Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
Body Params application/json
{
"css": "string",
"dashboard_title": "string",
"json_metadata": "string",
"owners": [
0
],
"position_json": "string",
"published": true,
"roles": [
0
],
"slug": "string"
}
Request Code Samples
curl --location --request PUT '/dashboard/' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"css": "string",
"dashboard_title": "string",
"json_metadata": "string",
"owners": [
0
],
"position_json": "string",
"published": true,
"roles": [
0
],
"slug": "string"
}'
Responses
{
"id": 0,
"result": {
"css": "string",
"dashboard_title": "string",
"json_metadata": "string",
"owners": [
0
],
"position_json": "string",
"published": true,
"roles": [
0
],
"slug": "string"
}
}
Modified at 2025-06-04 22:27:17