TribeTale API Docs
Admin APISettings

Browse settings.

GET
/settings/

Authorization

GhostAdminJWT
Authorization<token>

Send Authorization: Ghost <JWT>. This is a custom Ghost scheme, not standard Bearer.

The JWT is signed with HS256 using the Admin API key secret after hex decoding it to bytes. The JWT header must include kid set to the Admin API key id. Ghost verifies the aud claim against the requested Admin or Content API path and enforces a maximum token age of 5 minutes.

In: header

Query Parameters

group?string

Comma-separated setting groups.

Response Body

application/json

curl -X GET "https://example.com/settings/?group=site%2Cmembers"
{
  "settings": [
    {
      "key": "string",
      "value": null
    }
  ],
  "meta": {
    "pagination": {
      "page": 0,
      "limit": 0,
      "pages": 0,
      "total": 0,
      "next": 0,
      "prev": 0
    }
  }
}