REST API Reference//
- Retrieves a list of ticket status.
Retrieves a paginated list of categories based on the batch request
Create new category
Update existing category
Retrieves a paginated list of job types based on the batch request
Creates a new job type.
Updates an existing job type
Retrieves a paginated list of service needed based on the batch request
Creates a new service needed entry based on the provided request.
Update service needed entry based on the provided request.
Retrieves a paginated list of ticket sub statuses based on the batch request
Creates a new ticket sub-status.
Updates an existing ticket sub-status.
Retrieves a list of the ticket priorities
Retrieves a list of ticke...
GET
const instance = 'YOUR_instance_PARAMETER';
const resp = await fetch(
`https://${instance}.app.willowinc.com/api/v3/tickets/status`,
{
method: 'GET',
headers: {
Authorization: 'Bearer <YOUR_TOKEN_HERE>'
}
}
);
const data = await resp.text();
console.log(data);List of ticket status.
Array []
Gets or sets tab can be used to filter ticket status in UI also used to categorize ticket status to Open, Completed or Closed each ticket status, mapped to a Tab value e.g. to determine if ticket is closed we check all status under Closed tab.
Response
[ { "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08", "name": null, "tab": null, "color": null, "locations": null } ]