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}/comment/ |
Comment |
| 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 | |
- API Source:
support_issues_list
1 2 3 4 5 6 7 8 9 10 | |
| Name | Type | Description |
|---|---|---|
assignee |
string | |
assignee_name |
string | |
caller |
string | |
caller_full_name |
string | Caller full name contains |
customer |
string | |
customer_uuid |
string (uuid) | |
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 | |
project_uuid |
string (uuid) | |
query |
string | Summary or key contains |
remote_id |
string | |
reporter |
string | |
reporter_name |
string | |
resolution_year_month |
string | |
resource_external_ip |
string | Resource external IP |
resource_internal_ip |
string | Resource internal IP |
resource_uuid |
string (uuid) | Resource UUID |
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 | |
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 |
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 | |
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 |
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 | ||
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 | |
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 |
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 | ||
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 | |
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 |
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) | ||
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 | |
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 |
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
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 |
200 -
| 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) |
backend_id |
string |
remote_id |
string |
created |
string (date-time) |
update_is_available |
boolean |
destroy_is_available |
boolean |
Sync
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_sync
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 | ||
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 | |
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 |