View and set configurations for clients' accounts
GET /clients/{id}/settings
Description | Retrieve a list of settings for a specified client. |
Permissions | client.access |
Resource URL | |
Parameters | None. |
Example Request
GET https://app.klipfolio.com/api/1/clients/0123456789abcdef0123456789abcdef/settings
Example Response
{
"meta": {
"success": true,
"status": 200
},
"data": {
"settings": {
"brand.parent.enabled": null,
"datasource.blacklist": null,
"dpn.env.date.language.tag": "fr-FR"
}
}
}
POST /clients/{id}/settings
Description | Sets the value of one or more company properties. |
Permissions | client.access |
Resource URL | |
Parameters | dpn.env.date.language.tag |
Example Request
POST https://app.klipfolio.com/api/1/clients/0123456789abcdef0123456789abcdef/settings -d
Example Response
{
"meta": {
"success": true,
"status": 200
},
"data": {}
}