Setting

Update User Settings

PATCH
/api/v1/settings/update
/api/v1/settings/update

The Authorization access token

Authorization

Authorization
Required
<token>

Please enter a valid access token

In: header

Request Body

application/jsonOptional

key
Required
string

Minimum length: 1

value
Required
string

Minimum length: 1
curl -X PATCH "https://example.com/api/v1/settings/update" \
  -H "Authorization: <token>" \
  -H "Content-Type: application/json" \
  -d '{
    "key": "string",
    "value": "string"
  }'

OK