Support Issues
Operations Summary
| Method | Endpoint | Description |
|---|---|---|
| Core CRUD | ||
| GET | /api/support-issues/ |
List Support Issues |
| GET | /api/support-issues/{uuid}/ |
Retrieve |
| POST | /api/support-issues/ |
Create |
| PUT | /api/support-issues/{uuid}/ |
Update |
| PATCH | /api/support-issues/{uuid}/ |
Partial Update |
| DELETE | /api/support-issues/{uuid}/ |
Delete |
| Other Actions | ||
| POST | /api/support-issues/{uuid}/attach_resource/ |
Attach a marketplace resource to an issue |
| POST | /api/support-issues/bulk_update/ |
Bulk update multiple issues |
| POST | /api/support-issues/{uuid}/comment/ |
Comment |
| POST | /api/support-issues/{uuid}/escalate/ |
Escalate an issue |
| POST | /api/support-issues/{uuid}/reroute/ |
Re-route an already-routed issue to a different provider helpdesk |
| POST | /api/support-issues/{uuid}/route_to_provider/ |
Manually route an issue to a provider helpdesk |
| POST | /api/support-issues/{uuid}/sync/ |
Sync |
Core CRUD
List Support Issues
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 11 | |
- Model Source:
IssueOEnum - API Source:
support_issues_list
1 2 3 4 5 6 7 8 9 10 | |
| Name | Type | Description |
|---|---|---|
assignee |
string (uri) | |
assignee_name |
string | |
caller |
string (uri) | |
caller_full_name |
string | Caller full name contains |
customer |
string (uri) | |
customer_uuid |
string (uuid) | |
is_escalated |
boolean | |
is_parent |
boolean | Is a parent issue |
is_routed |
boolean | Has been routed to provider |
key |
string | |
o |
array | Ordering |
page |
integer | A page number within the paginated result set. |
page_size |
integer | Number of results to return per page. |
project |
string (uri) | |
project_uuid |
string (uuid) | |
provider_uuid |
string (uuid) | |
query |
string | Summary or key contains |
remote_id |
string | |
reporter |
string (uri) | |
reporter_name |
string | |
resolution_year_month |
string | |
resource |
string (uri) | Filter by resource URL. |
resource_external_ip |
string | Resource external IP |
resource_internal_ip |
string | Resource internal IP |
resource_uuid |
string (uuid) | Resource UUID |
sla_breached |
boolean | |
status |
string | |
summary |
string | |
type |
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) | |
type |
string | |
key |
string | |
backend_id |
string | |
backend_name |
string | |
remote_id |
string | |
link |
string (uri) | Link to issue in support system. |
summary |
string | |
description |
string | |
status |
string | |
resolution |
string | |
priority |
string | |
caller |
string (uri) | |
caller_uuid |
string (uuid) | |
caller_full_name |
string | |
reporter |
string (uri) | |
reporter_uuid |
string (uuid) | |
reporter_name |
string | |
assignee |
string (uri) | |
assignee_uuid |
string (uuid) | |
assignee_name |
string | |
customer |
string (uri) | |
customer_uuid |
string (uuid) | |
customer_name |
string | |
project |
string (uri) | |
project_uuid |
string (uuid) | |
project_name |
string | |
resource |
string | |
resource_type |
string | |
resource_name |
string | |
offering |
string (uuid) | |
created |
string (date-time) | |
modified |
string (date-time) | |
template |
string (uri) | |
feedback |
any | |
resolved |
boolean | |
update_is_available |
boolean | |
destroy_is_available |
boolean | |
add_comment_is_available |
boolean | |
add_attachment_is_available |
boolean | |
processing_log |
object (free-form) | Internal processing log for debugging order lifecycle events. Visible only to staff. |
order_uuid |
string | Return order UUID if the issue's resource is an Order. |
order_project_uuid |
string | Return order's project UUID if the issue's resource is an Order. |
order_customer_uuid |
string | Return order's customer UUID if the issue's resource is an Order. |
order_resource_name |
string | Return order's resource name if the issue's resource is an Order. |
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. |
sla_status |
string | |
parent_issue |
string (uri) | |
provider_helpdesk |
string (uri) | |
is_escalated |
boolean | Whether this issue has been escalated. |
escalated_at |
string (date-time) | When the issue was escalated. |
escalation_reason |
string | Reason for escalation. |
is_routed |
boolean | |
provider_ticket_info |
object (free-form) |
Retrieve
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 11 12 | |
- API Source:
support_issues_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) | |
type |
string | |
key |
string | |
backend_id |
string | |
backend_name |
string | |
remote_id |
string | |
link |
string (uri) | Link to issue in support system. |
summary |
string | |
description |
string | |
status |
string | |
resolution |
string | |
priority |
string | |
caller |
string (uri) | |
caller_uuid |
string (uuid) | |
caller_full_name |
string | |
reporter |
string (uri) | |
reporter_uuid |
string (uuid) | |
reporter_name |
string | |
assignee |
string (uri) | |
assignee_uuid |
string (uuid) | |
assignee_name |
string | |
customer |
string (uri) | |
customer_uuid |
string (uuid) | |
customer_name |
string | |
project |
string (uri) | |
project_uuid |
string (uuid) | |
project_name |
string | |
resource |
string | |
resource_type |
string | |
resource_name |
string | |
offering |
string (uuid) | |
created |
string (date-time) | |
modified |
string (date-time) | |
template |
string (uri) | |
feedback |
any | |
resolved |
boolean | |
update_is_available |
boolean | |
destroy_is_available |
boolean | |
add_comment_is_available |
boolean | |
add_attachment_is_available |
boolean | |
processing_log |
object (free-form) | Internal processing log for debugging order lifecycle events. Visible only to staff. |
order_uuid |
string | Return order UUID if the issue's resource is an Order. |
order_project_uuid |
string | Return order's project UUID if the issue's resource is an Order. |
order_customer_uuid |
string | Return order's customer UUID if the issue's resource is an Order. |
order_resource_name |
string | Return order's resource name if the issue's resource is an Order. |
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. |
sla_status |
string | |
parent_issue |
string (uri) | |
provider_helpdesk |
string (uri) | |
is_escalated |
boolean | Whether this issue has been escalated. |
escalated_at |
string (date-time) | When the issue was escalated. |
escalation_reason |
string | Reason for escalation. |
is_routed |
boolean | |
provider_ticket_info |
object (free-form) |
Create
1 2 3 4 5 6 | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | |
- Model Source:
IssueRequest - API Source:
support_issues_create
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | |
| Field | Type | Required | Description |
|---|---|---|---|
type |
string | ✓ | |
remote_id |
string | ||
summary |
string | ✓ | |
description |
string | ||
priority |
string | ||
caller |
string (uri) | ||
assignee |
string (uri) | ||
customer |
string (uri) | ||
project |
string (uri) | ||
resource |
string | ||
offering |
string (uuid) | ||
is_reported_manually |
boolean | Set true if issue is created by regular user via portal. Constraints: write-only, default: False |
|
template |
string (uri) |
201 -
| Field | Type | Description |
|---|---|---|
url |
string (uri) | |
uuid |
string (uuid) | |
type |
string | |
key |
string | |
backend_id |
string | |
backend_name |
string | |
remote_id |
string | |
link |
string (uri) | Link to issue in support system. |
summary |
string | |
description |
string | |
status |
string | |
resolution |
string | |
priority |
string | |
caller |
string (uri) | |
caller_uuid |
string (uuid) | |
caller_full_name |
string | |
reporter |
string (uri) | |
reporter_uuid |
string (uuid) | |
reporter_name |
string | |
assignee |
string (uri) | |
assignee_uuid |
string (uuid) | |
assignee_name |
string | |
customer |
string (uri) | |
customer_uuid |
string (uuid) | |
customer_name |
string | |
project |
string (uri) | |
project_uuid |
string (uuid) | |
project_name |
string | |
resource |
string | |
resource_type |
string | |
resource_name |
string | |
offering |
string (uuid) | |
created |
string (date-time) | |
modified |
string (date-time) | |
template |
string (uri) | |
feedback |
any | |
resolved |
boolean | |
update_is_available |
boolean | |
destroy_is_available |
boolean | |
add_comment_is_available |
boolean | |
add_attachment_is_available |
boolean | |
processing_log |
object (free-form) | Internal processing log for debugging order lifecycle events. Visible only to staff. |
order_uuid |
string | Return order UUID if the issue's resource is an Order. |
order_project_uuid |
string | Return order's project UUID if the issue's resource is an Order. |
order_customer_uuid |
string | Return order's customer UUID if the issue's resource is an Order. |
order_resource_name |
string | Return order's resource name if the issue's resource is an Order. |
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. |
sla_status |
string | |
parent_issue |
string (uri) | |
provider_helpdesk |
string (uri) | |
is_escalated |
boolean | Whether this issue has been escalated. |
escalated_at |
string (date-time) | When the issue was escalated. |
escalation_reason |
string | Reason for escalation. |
is_routed |
boolean | |
provider_ticket_info |
object (free-form) |
Update
1 2 3 4 5 6 | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | |
- Model Source:
IssueRequest - API Source:
support_issues_update
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | |
| Name | Type | Required |
|---|---|---|
uuid |
string (uuid) | ✓ |
| Field | Type | Required | Description |
|---|---|---|---|
type |
string | ✓ | |
remote_id |
string | ||
summary |
string | ✓ | |
description |
string | ||
priority |
string | ||
caller |
string (uri) | ||
assignee |
string (uri) | ||
customer |
string (uri) | ||
project |
string (uri) | ||
resource |
string | ||
offering |
string (uuid) | ||
is_reported_manually |
boolean | Set true if issue is created by regular user via portal. Constraints: write-only, default: False |
|
template |
string (uri) |
200 -
| Field | Type | Description |
|---|---|---|
url |
string (uri) | |
uuid |
string (uuid) | |
type |
string | |
key |
string | |
backend_id |
string | |
backend_name |
string | |
remote_id |
string | |
link |
string (uri) | Link to issue in support system. |
summary |
string | |
description |
string | |
status |
string | |
resolution |
string | |
priority |
string | |
caller |
string (uri) | |
caller_uuid |
string (uuid) | |
caller_full_name |
string | |
reporter |
string (uri) | |
reporter_uuid |
string (uuid) | |
reporter_name |
string | |
assignee |
string (uri) | |
assignee_uuid |
string (uuid) | |
assignee_name |
string | |
customer |
string (uri) | |
customer_uuid |
string (uuid) | |
customer_name |
string | |
project |
string (uri) | |
project_uuid |
string (uuid) | |
project_name |
string | |
resource |
string | |
resource_type |
string | |
resource_name |
string | |
offering |
string (uuid) | |
created |
string (date-time) | |
modified |
string (date-time) | |
template |
string (uri) | |
feedback |
any | |
resolved |
boolean | |
update_is_available |
boolean | |
destroy_is_available |
boolean | |
add_comment_is_available |
boolean | |
add_attachment_is_available |
boolean | |
processing_log |
object (free-form) | Internal processing log for debugging order lifecycle events. Visible only to staff. |
order_uuid |
string | Return order UUID if the issue's resource is an Order. |
order_project_uuid |
string | Return order's project UUID if the issue's resource is an Order. |
order_customer_uuid |
string | Return order's customer UUID if the issue's resource is an Order. |
order_resource_name |
string | Return order's resource name if the issue's resource is an Order. |
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. |
sla_status |
string | |
parent_issue |
string (uri) | |
provider_helpdesk |
string (uri) | |
is_escalated |
boolean | Whether this issue has been escalated. |
escalated_at |
string (date-time) | When the issue was escalated. |
escalation_reason |
string | Reason for escalation. |
is_routed |
boolean | |
provider_ticket_info |
object (free-form) |
Partial Update
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | |
- Model Source:
PatchedIssueRequest - API Source:
support_issues_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 |
|---|---|---|---|
summary |
string | ||
description |
string | ||
assignee |
string (uri) | ||
offering |
string (uuid) | ||
is_reported_manually |
boolean | Set true if issue is created by regular user via portal. Constraints: write-only, default: False |
200 -
| Field | Type | Description |
|---|---|---|
url |
string (uri) | |
uuid |
string (uuid) | |
type |
string | |
key |
string | |
backend_id |
string | |
backend_name |
string | |
remote_id |
string | |
link |
string (uri) | Link to issue in support system. |
summary |
string | |
description |
string | |
status |
string | |
resolution |
string | |
priority |
string | |
caller |
string (uri) | |
caller_uuid |
string (uuid) | |
caller_full_name |
string | |
reporter |
string (uri) | |
reporter_uuid |
string (uuid) | |
reporter_name |
string | |
assignee |
string (uri) | |
assignee_uuid |
string (uuid) | |
assignee_name |
string | |
customer |
string (uri) | |
customer_uuid |
string (uuid) | |
customer_name |
string | |
project |
string (uri) | |
project_uuid |
string (uuid) | |
project_name |
string | |
resource |
string | |
resource_type |
string | |
resource_name |
string | |
offering |
string (uuid) | |
created |
string (date-time) | |
modified |
string (date-time) | |
template |
string (uri) | |
feedback |
any | |
resolved |
boolean | |
update_is_available |
boolean | |
destroy_is_available |
boolean | |
add_comment_is_available |
boolean | |
add_attachment_is_available |
boolean | |
processing_log |
object (free-form) | Internal processing log for debugging order lifecycle events. Visible only to staff. |
order_uuid |
string | Return order UUID if the issue's resource is an Order. |
order_project_uuid |
string | Return order's project UUID if the issue's resource is an Order. |
order_customer_uuid |
string | Return order's customer UUID if the issue's resource is an Order. |
order_resource_name |
string | Return order's resource name if the issue's resource is an Order. |
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. |
sla_status |
string | |
parent_issue |
string (uri) | |
provider_helpdesk |
string (uri) | |
is_escalated |
boolean | Whether this issue has been escalated. |
escalated_at |
string (date-time) | When the issue was escalated. |
escalation_reason |
string | Reason for escalation. |
is_routed |
boolean | |
provider_ticket_info |
object (free-form) |
Delete
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 11 12 | |
- API Source:
support_issues_destroy
1 2 3 4 5 6 7 8 9 10 11 12 13 | |
| Name | Type | Required |
|---|---|---|
uuid |
string (uuid) | ✓ |
204 - No response body
Other Actions
Attach a marketplace resource to an issue
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:
AttachResourceRequest - API Source:
support_issues_attach_resource
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 |
|---|---|---|---|
resource |
string | ✓ | URL of the marketplace resource to attach to this issue. |
200 -
| Field | Type | Description |
|---|---|---|
url |
string (uri) | |
uuid |
string (uuid) | |
type |
string | |
key |
string | |
backend_id |
string | |
backend_name |
string | |
remote_id |
string | |
link |
string (uri) | Link to issue in support system. |
summary |
string | |
description |
string | |
status |
string | |
resolution |
string | |
priority |
string | |
caller |
string (uri) | |
caller_uuid |
string (uuid) | |
caller_full_name |
string | |
reporter |
string (uri) | |
reporter_uuid |
string (uuid) | |
reporter_name |
string | |
assignee |
string (uri) | |
assignee_uuid |
string (uuid) | |
assignee_name |
string | |
customer |
string (uri) | |
customer_uuid |
string (uuid) | |
customer_name |
string | |
project |
string (uri) | |
project_uuid |
string (uuid) | |
project_name |
string | |
resource |
string | |
resource_type |
string | |
resource_name |
string | |
offering |
string (uuid) | |
created |
string (date-time) | |
modified |
string (date-time) | |
template |
string (uri) | |
feedback |
any | |
resolved |
boolean | |
update_is_available |
boolean | |
destroy_is_available |
boolean | |
add_comment_is_available |
boolean | |
add_attachment_is_available |
boolean | |
processing_log |
object (free-form) | Internal processing log for debugging order lifecycle events. Visible only to staff. |
order_uuid |
string | Return order UUID if the issue's resource is an Order. |
order_project_uuid |
string | Return order's project UUID if the issue's resource is an Order. |
order_customer_uuid |
string | Return order's customer UUID if the issue's resource is an Order. |
order_resource_name |
string | Return order's resource name if the issue's resource is an Order. |
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. |
sla_status |
string | |
parent_issue |
string (uri) | |
provider_helpdesk |
string (uri) | |
is_escalated |
boolean | Whether this issue has been escalated. |
escalated_at |
string (date-time) | When the issue was escalated. |
escalation_reason |
string | Reason for escalation. |
is_routed |
boolean | |
provider_ticket_info |
object (free-form) |
Bulk update multiple issues
1 2 3 4 5 | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | |
- Model Source:
BulkUpdateIssueRequest - API Source:
support_issues_bulk_update
1 2 3 4 5 6 7 8 9 10 11 12 13 | |
| Field | Type | Required | Description |
|---|---|---|---|
issue_uuids |
array of string (uuid)s | ✓ | List of issue UUIDs to update. |
status |
string | ||
priority |
string | ||
assignee |
string (uuid) |
200 - No response body
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:
CommentRequest - API Source:
support_issues_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 -
| Field | Type |
|---|---|
url |
string (uri) |
uuid |
string (uuid) |
issue |
string (uri) |
issue_key |
string |
description |
string |
is_public |
boolean |
author_name |
string |
author_uuid |
string (uuid) |
author_user |
string (uri) |
author_email |
string (email) |
author_image |
string (uri) |
backend_id |
string |
remote_id |
string |
created |
string (date-time) |
update_is_available |
boolean |
destroy_is_available |
boolean |
Escalate an issue
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:
EscalateIssueRequest - API Source:
support_issues_escalate
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 |
|---|---|---|---|
reason |
string | ✓ | Reason for escalation. |
200 - No response body
Re-route an already-routed issue to a different provider helpdesk
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:
RouteToProviderRequest - API Source:
support_issues_reroute
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 |
|---|---|---|---|
provider_helpdesk |
string (uuid) | ✓ | UUID of the provider helpdesk to route this issue to. |
200 -
| Field | Type | Description |
|---|---|---|
url |
string (uri) | |
uuid |
string (uuid) | |
type |
string | |
key |
string | |
backend_id |
string | |
backend_name |
string | |
remote_id |
string | |
link |
string (uri) | Link to issue in support system. |
summary |
string | |
description |
string | |
status |
string | |
resolution |
string | |
priority |
string | |
caller |
string (uri) | |
caller_uuid |
string (uuid) | |
caller_full_name |
string | |
reporter |
string (uri) | |
reporter_uuid |
string (uuid) | |
reporter_name |
string | |
assignee |
string (uri) | |
assignee_uuid |
string (uuid) | |
assignee_name |
string | |
customer |
string (uri) | |
customer_uuid |
string (uuid) | |
customer_name |
string | |
project |
string (uri) | |
project_uuid |
string (uuid) | |
project_name |
string | |
resource |
string | |
resource_type |
string | |
resource_name |
string | |
offering |
string (uuid) | |
created |
string (date-time) | |
modified |
string (date-time) | |
template |
string (uri) | |
feedback |
any | |
resolved |
boolean | |
update_is_available |
boolean | |
destroy_is_available |
boolean | |
add_comment_is_available |
boolean | |
add_attachment_is_available |
boolean | |
processing_log |
object (free-form) | Internal processing log for debugging order lifecycle events. Visible only to staff. |
order_uuid |
string | Return order UUID if the issue's resource is an Order. |
order_project_uuid |
string | Return order's project UUID if the issue's resource is an Order. |
order_customer_uuid |
string | Return order's customer UUID if the issue's resource is an Order. |
order_resource_name |
string | Return order's resource name if the issue's resource is an Order. |
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. |
sla_status |
string | |
parent_issue |
string (uri) | |
provider_helpdesk |
string (uri) | |
is_escalated |
boolean | Whether this issue has been escalated. |
escalated_at |
string (date-time) | When the issue was escalated. |
escalation_reason |
string | Reason for escalation. |
is_routed |
boolean | |
provider_ticket_info |
object (free-form) |
Manually route an issue to a provider helpdesk
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:
RouteToProviderRequest - API Source:
support_issues_route_to_provider
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 |
|---|---|---|---|
provider_helpdesk |
string (uuid) | ✓ | UUID of the provider helpdesk to route this issue to. |
200 -
| Field | Type | Description |
|---|---|---|
url |
string (uri) | |
uuid |
string (uuid) | |
type |
string | |
key |
string | |
backend_id |
string | |
backend_name |
string | |
remote_id |
string | |
link |
string (uri) | Link to issue in support system. |
summary |
string | |
description |
string | |
status |
string | |
resolution |
string | |
priority |
string | |
caller |
string (uri) | |
caller_uuid |
string (uuid) | |
caller_full_name |
string | |
reporter |
string (uri) | |
reporter_uuid |
string (uuid) | |
reporter_name |
string | |
assignee |
string (uri) | |
assignee_uuid |
string (uuid) | |
assignee_name |
string | |
customer |
string (uri) | |
customer_uuid |
string (uuid) | |
customer_name |
string | |
project |
string (uri) | |
project_uuid |
string (uuid) | |
project_name |
string | |
resource |
string | |
resource_type |
string | |
resource_name |
string | |
offering |
string (uuid) | |
created |
string (date-time) | |
modified |
string (date-time) | |
template |
string (uri) | |
feedback |
any | |
resolved |
boolean | |
update_is_available |
boolean | |
destroy_is_available |
boolean | |
add_comment_is_available |
boolean | |
add_attachment_is_available |
boolean | |
processing_log |
object (free-form) | Internal processing log for debugging order lifecycle events. Visible only to staff. |
order_uuid |
string | Return order UUID if the issue's resource is an Order. |
order_project_uuid |
string | Return order's project UUID if the issue's resource is an Order. |
order_customer_uuid |
string | Return order's customer UUID if the issue's resource is an Order. |
order_resource_name |
string | Return order's resource name if the issue's resource is an Order. |
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. |
sla_status |
string | |
parent_issue |
string (uri) | |
provider_helpdesk |
string (uri) | |
is_escalated |
boolean | Whether this issue has been escalated. |
escalated_at |
string (date-time) | When the issue was escalated. |
escalation_reason |
string | Reason for escalation. |
is_routed |
boolean | |
provider_ticket_info |
object (free-form) |
Sync
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 11 12 | |
- API Source:
support_issues_sync
1 2 3 4 5 6 7 8 9 10 11 12 13 | |
| Name | Type | Required |
|---|---|---|
uuid |
string (uuid) | ✓ |
200 - No response body