PPylon Developers
ApiOrganizer Sites

Get site

Returns detailed information about a specific site.

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

Enter your bearer token from the Pylon Auth API.

In: header

Path Parameters

siteId*string
Formatuuid

Response Body

application/json

application/problem+json

curl -X GET "https://loading/api/organizer/v1/sites/497f6eca-6276-4993-bfeb-53cbbbba6f08"
{
  "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
  "name": "string",
  "slug": "string",
  "defaultLocale": "string",
  "enabledLocales": [
    "string"
  ],
  "status": "string",
  "theme": {
    "primaryColor": null,
    "secondaryColor": null,
    "accentColor": null,
    "fontFamily": null,
    "logoUrl": null,
    "faviconUrl": null,
    "customCss": null
  },
  "homepagePageId": null,
  "navigation": {
    "items": [
      {
        "label": "string",
        "href": "string",
        "openInNewTab": true,
        "children": [
          {
            "label": "string",
            "href": "string",
            "openInNewTab": true,
            "children": []
          }
        ]
      }
    ]
  },
  "headerSymbolId": null,
  "footerSymbolId": null,
  "createdAt": "2019-08-24T14:15:22Z",
  "updatedAt": "2019-08-24T14:15:22Z"
}
{
  "code": "string",
  "message": "string"
}