An 'In Progress' ticket is a ticket that is joined by an operator and is marked as currently being worked on.
id | string <uuid> Ticket identifier. |
created_at | string <date-time> Date and time of creation. |
customer_id | string <uuid> Identifier of the customer for whom the ticket was created. |
ticket_number | integer <int64> Human-readable ticket identifier. |
vehicle_model_id | integer <int64> Identifier of the vehicle model on the ticket. |
vin | string = 17 characters Vehicle Identification Number (VIN) of the vehicle on the ticket. |
service_started_at | string <date-time> Date and time service started on this ticket. |
operator_id | string <uuid> Identifier of the assigned operator. |
voucher_code | string or null [ 4 .. 8 ] characters [A-Z0-9] Voucher code. |
outsourced | boolean Reflects whether a ticket has been outsourced at least once to another provider. |
connection_id | string or null <uuid> Identifier of the connection. |
{- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "created_at": "2019-08-24T14:15:22Z",
- "customer_id": "160c0c4b-9966-4dc1-a916-8407eb10d74e",
- "ticket_number": 7440303,
- "vehicle_model_id": 0,
- "vin": "JH4KA7630PC007649",
- "service_started_at": "2019-08-24T14:15:22Z",
- "operator_id": "fa9de6bb-1df8-4ba6-9e6d-1172fbf7e166",
- "voucher_code": "WQ4MM3",
- "outsourced": true,
- "connection_id": "d3547de1-d1f2-4344-b4c2-17169b7526f9"
}
Retrieve a list of 'In Progress' tickets.
Successful response.
An error occurred - see status code and problem response for more information.
{- "query": {
- "limit": 25,
- "offset": 0
}, - "result": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "created_at": "2019-08-24T14:15:22Z",
- "customer_id": "160c0c4b-9966-4dc1-a916-8407eb10d74e",
- "ticket_number": 7440303,
- "vehicle_model_id": 0,
- "vin": "JH4KA7630PC007649",
- "service_started_at": "2019-08-24T14:15:22Z",
- "operator_id": "fa9de6bb-1df8-4ba6-9e6d-1172fbf7e166",
- "voucher_code": "WQ4MM3",
- "outsourced": true,
- "connection_id": "d3547de1-d1f2-4344-b4c2-17169b7526f9"
}
], - "total": 3255
}
Retrieve a single 'In Progress' ticket by its identifier.
Successful response.
id | string <uuid> Ticket identifier. |
created_at | string <date-time> Date and time of creation. |
customer_id | string <uuid> Identifier of the customer for whom the ticket was created. |
ticket_number | integer <int64> Human-readable ticket identifier. |
vehicle_model_id | integer <int64> Identifier of the vehicle model on the ticket. |
vin | string = 17 characters Vehicle Identification Number (VIN) of the vehicle on the ticket. |
service_started_at | string <date-time> Date and time service started on this ticket. |
operator_id | string <uuid> Identifier of the assigned operator. |
voucher_code | string or null [ 4 .. 8 ] characters [A-Z0-9] Voucher code. |
outsourced | boolean Reflects whether a ticket has been outsourced at least once to another provider. |
connection_id | string or null <uuid> Identifier of the connection. |
An error occurred - see status code and problem response for more information.
{- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "created_at": "2019-08-24T14:15:22Z",
- "customer_id": "160c0c4b-9966-4dc1-a916-8407eb10d74e",
- "ticket_number": 7440303,
- "vehicle_model_id": 0,
- "vin": "JH4KA7630PC007649",
- "service_started_at": "2019-08-24T14:15:22Z",
- "operator_id": "fa9de6bb-1df8-4ba6-9e6d-1172fbf7e166",
- "voucher_code": "WQ4MM3",
- "outsourced": true,
- "connection_id": "d3547de1-d1f2-4344-b4c2-17169b7526f9"
}
Update a single 'In Progress' ticket by its identifier.
Successful response.
id | string <uuid> Ticket identifier. |
created_at | string <date-time> Date and time of creation. |
customer_id | string <uuid> Identifier of the customer for whom the ticket was created. |
ticket_number | integer <int64> Human-readable ticket identifier. |
vehicle_model_id | integer <int64> Identifier of the vehicle model on the ticket. |
vin | string = 17 characters Vehicle Identification Number (VIN) of the vehicle on the ticket. |
service_started_at | string <date-time> Date and time service started on this ticket. |
operator_id | string <uuid> Identifier of the assigned operator. |
voucher_code | string or null [ 4 .. 8 ] characters [A-Z0-9] Voucher code. |
outsourced | boolean Reflects whether a ticket has been outsourced at least once to another provider. |
connection_id | string or null <uuid> Identifier of the connection. |
An error occurred - see status code and problem response for more information.
{- "customer_id": "160c0c4b-9966-4dc1-a916-8407eb10d74e",
- "vehicle_model_id": 0,
- "vin": "JH4KA7630PC007649",
- "operator_id": "fa9de6bb-1df8-4ba6-9e6d-1172fbf7e166",
- "voucher_code": "WQ4MM3"
}
{- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "created_at": "2019-08-24T14:15:22Z",
- "customer_id": "160c0c4b-9966-4dc1-a916-8407eb10d74e",
- "ticket_number": 7440303,
- "vehicle_model_id": 0,
- "vin": "JH4KA7630PC007649",
- "service_started_at": "2019-08-24T14:15:22Z",
- "operator_id": "fa9de6bb-1df8-4ba6-9e6d-1172fbf7e166",
- "voucher_code": "WQ4MM3",
- "outsourced": true,
- "connection_id": "d3547de1-d1f2-4344-b4c2-17169b7526f9"
}
Transition a single 'In Progress' ticket by its identifier.
The changes you wish to make.
required | Outsource (object) or Complete (object) or Cancel (object) Transition this ticket to a different state. | ||||||||||||||
One of: Request another provider to execute specified products on your behalf.
|
{- "transition": {
- "type": "outsource",
- "allow_customer_chat_write_access": true,
- "product_ids": [
- "497f6eca-6276-4993-bfeb-53cbbbba6f08"
], - "provider_id": "fe3d49af-4061-436b-ae60-f7044f252a44",
- "share_customer_information": true
}
}
{- "status": 400,
- "type": "about:blank",
- "title": "Some title for the error situation",
- "detail": "Some description for the error situation"
}