PPylon Developers
ApiOrganizer Pages

Create page

Creates a new page in a site.

POST
/api/organizer/v1/sites/{siteId}/pages
AuthorizationBearer <token>

Enter your bearer token from the Pylon Auth API.

In: header

Path Parameters

siteId*string
Formatuuid

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

curl -X POST "https://loading/api/organizer/v1/sites/497f6eca-6276-4993-bfeb-53cbbbba6f08/pages" \  -H "Content-Type: application/json" \  -d '{    "title": "string",    "slug": "string",    "sortOrder": 0,    "parentPageId": null  }'
{
  "pageId": "347b9bf8-fe00-46f6-b8ca-1e06b3bd5809"
}
{
  "code": "string",
  "message": "string"
}