Developer Portal

Get SettingGET

Return a single client profile setting by profile ID and setting key.

View as Markdown
GET
/profiles/{profileId}/settings/{key}

Authorization

Authorization<token>

Bearer access token issued by the admin login flow.

In: header

Path Parameters

profileIdRequiredstring

The client profile ID that owns this setting.

keyRequiredstring

Setting key. Pattern: ^[A-Za-z0-9_-:#]+$, max 256 chars.

curl -X GET "https://example.com/profiles/<string>/settings/<string>" \
  -H "Authorization: <token>"

A successful response.

{
  "profileId": "string",
  "key": "string",
  "value": "string",
  "updatedAt": "2019-08-24T14:15:22Z"
}