Only this pageAll pages
Powered by GitBook
1 of 7

Arvind The Park

Loading...

Basics

Loading...

Loading...

Loading...

Loading...

Loading...

Integrations

GitBook integrations allow you to connect your GitBook spaces to some of your favorite platforms and services. You can install integrations into your GitBook page from the Integrations menu in the top left.

Types of integrations

Analytics

Track analytics from your docs

Support

Add support widgets to your docs

Interactive

Add extra functionality to your docs

Visitor Authentication

Protect your docs and require sign-in

Arvind The Park

Arvind The Park at within Devanahalli in North Bangalore. A wide range of plot options from 600 sq ft to 2400 sq ft different customer in this development complex. The luxury features define Arvind The Park. Two to three BHK and four BHK apartment types exist in an area designated by the designers. This position connects residents to Doddajala Metro Station via Doddaballapura main road and National Highway 44 along with SH 104 Road for easy travel methods. Homeowners at The Park can access modern living conveniences that include running spaces alongside biking paths as well as cricket fields and football fields and tennis courts and parks with green spaces together with 24-hour security protection.

Arvind The Park Connectivity Homeowners can buy plots in Arvind The Park for a reasonable starting price of ₹42 Lakhs to construct on their 600 sq ft property. The project is being designed by a famous builders around the world, & it will have lots of cool features. Arvind The Park has a big clubhouse thise is brimming with the best indoor activities. It is a space where each member gets away from the boring life they lead and has a great time with friends. These are ideal for relaxing and having a good time with family. For More Arvind The Park Location Arvind The Park Master Plan Arvind The Park Amenities Arvind The Park Contact Arvind The Park Reviews

Interactive blocks

In addition to the default Markdown you can write, GitBook has a number of out-of-the-box interactive blocks you can use. You can find interactive blocks by pressing / from within the editor.

Tabs

Each tab is like a mini page — it can contain multiple other blocks, of any type. So you can add code blocks, images, integration blocks and more to individual tabs in the same tab block.

Add images, embedded content, code blocks, and more.

Expandable sections

Click me to expand

Expandable blocks are helpful in condensing what could otherwise be a lengthy paragraph. They are also great in step-by-step guides and FAQs.

Drawings

Embedded content

GitBook supports thousands of embedded websites out-of-the-box, simply by pasting their links. Feel free to check out which ones are supported natively.

const handleFetchEvent = async (request, context) => {
    return new Response({message: "Hello World"});
};

Images & media

GitBook allows you to add images and media easily to your docs. Simply drag a file into the editor, or use the file manager in the upper right corner to upload multiple images at once.

You can also add images simply by copying and pasting them directly into the editor — and GitBook will automatically add it to your file manager.

Add alt text and captions to your images

Markdown

GitBook supports many different types of content, and is backed by Markdown — meaning you can copy and paste any existing Markdown files directly into the editor!

Feel free to test it out and copy the Markdown below by hovering over the code block in the upper right, and pasting into a new line underneath.

# Heading

This is some paragraph text, with a [link](https://docs.gitbook.com) to our docs. 

## Heading 2
- Point 1
- Point 2
- Point 3

If you have multiple files, GitBook makes it easy to import full repositories too — allowing you to keep your GitBook content in sync.

OpenAPI

You can sync GitBook pages with an OpenAPI or Swagger file or a URL to include auto-generated API methods in your documentation.

OpenAPI block

GitBook's OpenAPI block is powered by Scalar, so you can test your APIs directly from your docs.

Add a new pet to the store.

post

Add a new pet to the store.

Required scopes
This endpoint requires the following scopes:
  • : modify pets in your account
  • : read your pets
Authorizations
OAuth2implicitRequired
Authorization URL:
Body
idinteger · int64OptionalExample: 10
namestringRequiredExample: doggie
photoUrlsstring[]Required
statusstring · enumOptional

pet status in the store

Possible values:
Responses
200

Successful operation

400

Invalid input

422

Validation exception

default

Unexpected error

post
/pet
{
  "id": 10,
  "name": "doggie",
  "category": {
    "id": 1,
    "name": "Dogs"
  },
  "photoUrls": [
    "text"
  ],
  "tags": [
    {
      "id": 1,
      "name": "text"
    }
  ],
  "status": "available"
}
POST /api/v3/pet HTTP/1.1
Host: 
Authorization: Bearer YOUR_OAUTH2_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 133

{
  "id": 10,
  "name": "doggie",
  "category": {
    "id": 1,
    "name": "Dogs"
  },
  "photoUrls": [
    "text"
  ],
  "tags": [
    {
      "id": 1,
      "name": "text"
    }
  ],
  "status": "available"
}