curl --request GET \
--url https://api.example.com/v2/billing_statuses/{id}/ \
--header 'Authorization: Bearer <token>'{
"id": 123,
"value": "<string>",
"display_text": "<string>",
"ticket_type": "<string>",
"fleet": 123,
"is_system": "<string>"
}Retrieve a billing status by ID.
curl --request GET \
--url https://api.example.com/v2/billing_statuses/{id}/ \
--header 'Authorization: Bearer <token>'{
"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?