Provider Tickets
Operations Summary
| Method | Endpoint | Description |
|---|---|---|
| Core CRUD | ||
| GET | /api/provider-tickets/ |
List Provider Tickets |
| GET | /api/provider-tickets/{uuid}/ |
Retrieve |
| PUT | /api/provider-tickets/{uuid}/ |
Update |
| PATCH | /api/provider-tickets/{uuid}/ |
Partial Update |
| Other Actions | ||
| GET | /api/provider-tickets/{uuid}/customer_context/ |
Get customer context for this ticket |
| GET | /api/provider-tickets/stats/ |
Get statistics for provider tickets |
| POST | /api/provider-tickets/{uuid}/assign/ |
Assign |
| POST | /api/provider-tickets/{uuid}/claim/ |
Claim |
| POST | /api/provider-tickets/{uuid}/comment/ |
Comment |
| POST | /api/provider-tickets/{uuid}/resolve/ |
Resolve |
Core CRUD
List Provider Tickets
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 11 | |
- Model Source:
ProviderTicketOEnum - API Source:
provider_tickets_list
1 2 3 4 5 6 7 8 9 10 | |
| Name | Type | Description |
|---|---|---|
is_escalated |
boolean | |
o |
array | Ordering |
page |
integer | A page number within the paginated result set. |
page_size |
integer | Number of results to return per page. |
priority |
string | |
provider_assignee |
string (uuid) | |
sla_breached |
boolean | |
status |
string | |
summary |
string |
200 -
The response body is an array of objects, where each object has the following structure:
| Field | Type | Description |
|---|---|---|
url |
string (uri) | |
uuid |
string (uuid) | |
key |
string | |
summary |
string | |
description |
string | |
type |
string | |
status |
string | |
priority |
string | |
created |
string (date-time) | |
modified |
string (date-time) | |
parent_issue_key |
string | |
parent_issue_uuid |
string (uuid) | |
is_escalated |
boolean | Whether this issue has been escalated. |
escalated_at |
string (date-time) | When the issue was escalated. |
provider_assignee |
string (uuid) | |
provider_assignee_name |
string | |
first_response_deadline |
string (date-time) | Deadline for first response from support staff. |
resolution_deadline |
string (date-time) | Deadline for issue resolution. |
first_response_at |
string (date-time) | Timestamp of first response from support staff. |
sla_breached |
boolean | Whether SLA has been breached for this issue. |
customer |
string (uri) | |
customer_uuid |
string (uuid) | |
customer_name |
string | |
project |
string (uri) | |
project_uuid |
string (uuid) | |
project_name |
string |
Retrieve
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 11 12 | |
- API Source:
provider_tickets_retrieve
1 2 3 4 5 6 7 8 9 10 11 12 13 | |
| Name | Type | Required |
|---|---|---|
uuid |
string (uuid) | ✓ |
200 -
| Field | Type | Description |
|---|---|---|
url |
string (uri) | |
uuid |
string (uuid) | |
key |
string | |
summary |
string | |
description |
string | |
type |
string | |
status |
string | |
priority |
string | |
created |
string (date-time) | |
modified |
string (date-time) | |
parent_issue_key |
string | |
parent_issue_uuid |
string (uuid) | |
is_escalated |
boolean | Whether this issue has been escalated. |
escalated_at |
string (date-time) | When the issue was escalated. |
provider_assignee |
string (uuid) | |
provider_assignee_name |
string | |
first_response_deadline |
string (date-time) | Deadline for first response from support staff. |
resolution_deadline |
string (date-time) | Deadline for issue resolution. |
first_response_at |
string (date-time) | Timestamp of first response from support staff. |
sla_breached |
boolean | Whether SLA has been breached for this issue. |
customer |
string (uri) | |
customer_uuid |
string (uuid) | |
customer_name |
string | |
project |
string (uri) | |
project_uuid |
string (uuid) | |
project_name |
string |
Update
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | |
- Model Source:
ProviderTicketRequest - API Source:
provider_tickets_update
1 2 3 4 5 6 7 8 9 10 11 12 13 | |
| Name | Type | Required |
|---|---|---|
uuid |
string (uuid) | ✓ |
| Field | Type | Required | Description |
|---|---|---|---|
escalated_at |
string (date-time) | When the issue was escalated. | |
customer |
string (uri) | ||
project |
string (uri) |
200 -
| Field | Type | Description |
|---|---|---|
url |
string (uri) | |
uuid |
string (uuid) | |
key |
string | |
summary |
string | |
description |
string | |
type |
string | |
status |
string | |
priority |
string | |
created |
string (date-time) | |
modified |
string (date-time) | |
parent_issue_key |
string | |
parent_issue_uuid |
string (uuid) | |
is_escalated |
boolean | Whether this issue has been escalated. |
escalated_at |
string (date-time) | When the issue was escalated. |
provider_assignee |
string (uuid) | |
provider_assignee_name |
string | |
first_response_deadline |
string (date-time) | Deadline for first response from support staff. |
resolution_deadline |
string (date-time) | Deadline for issue resolution. |
first_response_at |
string (date-time) | Timestamp of first response from support staff. |
sla_breached |
boolean | Whether SLA has been breached for this issue. |
customer |
string (uri) | |
customer_uuid |
string (uuid) | |
customer_name |
string | |
project |
string (uri) | |
project_uuid |
string (uuid) | |
project_name |
string |
Partial Update
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | |
- Model Source:
PatchedProviderTicketRequest - API Source:
provider_tickets_partial_update
1 2 3 4 5 6 7 8 9 10 11 12 13 | |
| Name | Type | Required |
|---|---|---|
uuid |
string (uuid) | ✓ |
| Field | Type | Required | Description |
|---|---|---|---|
escalated_at |
string (date-time) | When the issue was escalated. | |
customer |
string (uri) | ||
project |
string (uri) |
200 -
| Field | Type | Description |
|---|---|---|
url |
string (uri) | |
uuid |
string (uuid) | |
key |
string | |
summary |
string | |
description |
string | |
type |
string | |
status |
string | |
priority |
string | |
created |
string (date-time) | |
modified |
string (date-time) | |
parent_issue_key |
string | |
parent_issue_uuid |
string (uuid) | |
is_escalated |
boolean | Whether this issue has been escalated. |
escalated_at |
string (date-time) | When the issue was escalated. |
provider_assignee |
string (uuid) | |
provider_assignee_name |
string | |
first_response_deadline |
string (date-time) | Deadline for first response from support staff. |
resolution_deadline |
string (date-time) | Deadline for issue resolution. |
first_response_at |
string (date-time) | Timestamp of first response from support staff. |
sla_breached |
boolean | Whether SLA has been breached for this issue. |
customer |
string (uri) | |
customer_uuid |
string (uuid) | |
customer_name |
string | |
project |
string (uri) | |
project_uuid |
string (uuid) | |
project_name |
string |
Other Actions
Get customer context for this ticket
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 11 12 | |
- API Source:
provider_tickets_customer_context_retrieve
1 2 3 4 5 6 7 8 9 10 11 12 13 | |
| Name | Type | Required |
|---|---|---|
uuid |
string (uuid) | ✓ |
200 -
| Field | Type |
|---|---|
caller |
object |
caller.full_name |
string |
caller.email |
string (email) |
caller.organization |
string |
resource |
any |
recent_tickets |
array of objects |
recent_tickets.uuid |
string (uuid) |
recent_tickets.key |
string |
recent_tickets.summary |
string |
recent_tickets.status |
string |
recent_tickets.created |
string (date-time) |
Get statistics for provider tickets
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 | |
- API Source:
provider_tickets_stats_retrieve
1 2 3 4 5 6 7 8 9 10 | |
200 -
| Field | Type |
|---|---|
total_open |
integer |
total_resolved |
integer |
total_escalated |
integer |
sla_breach_count |
integer |
avg_resolution_hours |
number (double) |
by_status |
object (free-form) |
Assign
1 2 3 4 5 | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | |
- Model Source:
ProviderAssignRequest - API Source:
provider_tickets_assign
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | |
| Name | Type | Required |
|---|---|---|
uuid |
string (uuid) | ✓ |
| Field | Type | Required |
|---|---|---|
provider_support_user |
string (uuid) | ✓ |
200 -
| Field | Type |
|---|---|
status |
string |
Claim
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | |
- Model Source:
ProviderTicketRequest - API Source:
provider_tickets_claim
1 2 3 4 5 6 7 8 9 10 11 12 13 | |
| Name | Type | Required |
|---|---|---|
uuid |
string (uuid) | ✓ |
| Field | Type | Required | Description |
|---|---|---|---|
escalated_at |
string (date-time) | When the issue was escalated. | |
customer |
string (uri) | ||
project |
string (uri) |
200 -
| Field | Type |
|---|---|
status |
string |
Comment
1 2 3 4 5 | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | |
- Model Source:
ProviderCommentRequest - API Source:
provider_tickets_comment
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | |
| Name | Type | Required |
|---|---|---|
uuid |
string (uuid) | ✓ |
| Field | Type | Required |
|---|---|---|
description |
string | ✓ |
is_public |
boolean |
201 - No response body
Resolve
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 11 12 | |
- API Source:
provider_tickets_resolve
1 2 3 4 5 6 7 8 9 10 11 12 13 | |
| Name | Type | Required |
|---|---|---|
uuid |
string (uuid) | ✓ |
200 -
| Field | Type |
|---|---|
status |
string |