PUT/v1/masterdashboard/widgets/{id}

Update masterdashboard widgets

Not yet documented — no summary in the API source.

RequiresAuthorization: Bearer sk_...tenant_id

Path parameters

idstringrequired

Request body application/json

idstringnullable
codestringnullable
labelstringnullable
colorstringnullable
widthinteger (int32)
heightinteger (int32)
componentstringnullable
descriptionstringnullable
categorystringnullable
isActiveboolean
createdAtstring (date-time)
updatedAtstring (date-time)

Responses

No response body.

curl --request PUT \
  --url 'https://api.4comply.io/v1/masterdashboard/widgets/00000000-0000-0000-0000-000000000000' \
  --header 'Authorization: Bearer sk_...' \
  --header 'tenant_id: your-tenant-id' \
  --header 'Content-Type: application/json' \
  --data '{
  "id": "00000000-0000-0000-0000-000000000000",
  "code": "example-code",
  "label": "Example label",
  "color": "#4f46e5",
  "width": 100,
  "height": 100,
  "component": "string",
  "description": "Example text",
  "category": "string",
  "isActive": true,
  "createdAt": "2026-09-07T12:00:00Z",
  "updatedAt": "2026-09-07T12:00:00Z"
}'