Retrieve settings
GET/api/settings
Retrieves the settings of the control plane.
Request
Responses
- 200
- 403
- application/json
- Schema
- Example (auto)
Schema
controlPlaneInteractionsstringrequired
colorstringrequired
darkThemeUrlstring
lightThemeUrlstring
{
"controlPlaneInteractions": "string",
"color": "string",
"darkThemeUrl": "string",
"lightThemeUrl": "string"
}
Forbidden
- application/json
- Schema
- Example (auto)
Schema
namestringrequired
statusstringrequired
codenumberrequired
messageobject
errorstring
{
"name": "string",
"status": "string",
"code": 0,
"message": {},
"error": "string"
}
Authorization: oauth2
name: oauth2type: oauth2scopes:controlplane_admin
flows: { "password": { "scopes": { "controlplane_admin": "controlplane_admin", "controlplane_dataplane": "controlplane_dataplane" } } }
- curl
- http
- CURL
curl -L 'https://tsg.dataspac.es/api/settings' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <token>'