Skip to main content
PATCH
/
statuses
/
{status_id}
Update Status
curl --request PATCH \
  --url https://api.{your-broker}.slate-labs.com/statuses/{status_id} \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "is_active": true
}
'
{
  "id": 123,
  "type": "<string>",
  "name": "<string>",
  "is_active": true,
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z"
}

Path Parameters

status_id
integer
required

Body

application/json
name
string | null
Required string length: 1 - 255
is_active
boolean | null

Response

Successful Response

id
integer
required
type
string
required
name
string
required
is_active
boolean
required
created_at
string<date-time>
required
updated_at
string<date-time>
required