Developer Portal

Update SettingPUT

Create or update a single client profile setting by profile ID and setting key.

View as Markdown
PUT
/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.

Query Parameters

valuestring

Stored string value. Callers may encode JSON or any text. Max ~128 KB via the REST endpoint.

updatedAtstring

Timestamp of the last write.

Format: "date-time"
curl -X PUT "https://example.com/profiles/<string>/settings/<string>?value=%3Cstring%3E&updatedAt=2019-08-24T14%3A15%3A22Z" \
  -H "Authorization: <token>"

A successful response.

{}