Skip to content

Update the account Corebook settings

Request

Security
bearerToken
Bodyapplication/jsonrequired
enabledboolean

Whether Corebook integration is enable

Example:true
corebookUrlstring

The URL to Corebook that will be used to link users to the brand guidelines

Example:"https://www.corebook.io/dash"
curl -i -X PUT \
  https://api-v2.dash.app/corebook-settings \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>' \
  -H 'Content-Type: application/json' \
  -d '{
    "enabled": true,
    "corebookUrl": "https://www.corebook.io/dash"
  }'

Responses

Success

Bodyapplication/json
resultobjectrequired
permittedActionsArray of objectsrequired
Response
{ "result": { "accountId": "cfb665ca-ce35-4418-b9d5-70ee815db4bd", "enabled": true, "corebookUrl": "https://www.corebook.io/dash" }, "permittedActions": [ {} ] }