The Client Settings Entity

Entity description

A ClientSettings entity represents a set of settings for a client, like opt-out. It is created automatically as part of the client creation but can be updated separately using the update endpoint.

Properties

NameDescriptionTypeExample
client_uidThe unique identifier (UID) of the clientstringd290f1ee-6c54-4b01-90e6-d701748f0851
opt_out_transactional_smsIndicates whether the client has opted out of transactional SMSbooleantrue
created_atThe timestamp when the record was created (ISO 8601 format)string2021-07-20T14:00:00.000Z
updated_atThe timestamp when the record was last updated (ISO 8601 format)string2021-07-20T14:00:00.000Z

Example

{
  "client_uid": "d290f1ee-6c54-4b01-90e6-d701748f0851",
  "opt_out_transactional_sms": true,
  "created_at": "2021-07-20T14:00:00.000Z",
  "updated_at": "2021-07-20T14:00:00.000Z"
}