curl --request PATCH \
--url https://api.example.com/v2/billing_statuses/{id}/ \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"value": "<string>",
"display_text": "<string>",
"ticket_type": "<string>"
}
'{
"id": 123,
"value": "<string>",
"display_text": "<string>",
"ticket_type": "<string>",
"fleet": 123,
"is_system": "<string>"
}Partially update a billing status by ID.
curl --request PATCH \
--url https://api.example.com/v2/billing_statuses/{id}/ \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"value": "<string>",
"display_text": "<string>",
"ticket_type": "<string>"
}
'{
"id": 123,
"value": "<string>",
"display_text": "<string>",
"ticket_type": "<string>",
"fleet": 123,
"is_system": "<string>"
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
A unique integer value identifying this billing status.
Was this page helpful?