Support Issue Statuses
Operations Summary
| Method | Endpoint | Description |
|---|---|---|
| GET | /api/support-issue-statuses/ |
List Support Issue Statuses |
| GET | /api/support-issue-statuses/{uuid}/ |
Retrieve |
| POST | /api/support-issue-statuses/ |
Create |
| PUT | /api/support-issue-statuses/{uuid}/ |
Update |
| PATCH | /api/support-issue-statuses/{uuid}/ |
Partial Update |
| DELETE | /api/support-issue-statuses/{uuid}/ |
Delete |
List Support Issue Statuses
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 | |
- API Source:
support_issue_statuses_list
1 2 3 4 5 6 7 8 9 10 | |
| Name | Type | Description |
|---|---|---|
page |
integer | A page number within the paginated result set. |
page_size |
integer | Number of results to return per page. |
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) | |
name |
string | Status name in Jira. |
type |
any | |
type_display |
string |
Retrieve
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 11 12 | |
- API Source:
support_issue_statuses_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) | |
name |
string | Status name in Jira. |
type |
any | |
type_display |
string |
Create
1 2 3 4 5 | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | |
- Model Source:
IssueStatusRequest - API Source:
support_issue_statuses_create
1 2 3 4 5 6 7 8 9 10 11 12 13 | |
| Field | Type | Required | Description |
|---|---|---|---|
name |
string | ✓ | Status name in Jira. |
type |
any |
201 -
| Field | Type | Description |
|---|---|---|
url |
string (uri) | |
uuid |
string (uuid) | |
name |
string | Status name in Jira. |
type |
any | |
type_display |
string |
Update
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:
IssueStatusRequest - API Source:
support_issue_statuses_update
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 |
|---|---|---|---|
name |
string | ✓ | Status name in Jira. |
type |
any |
200 -
| Field | Type | Description |
|---|---|---|
url |
string (uri) | |
uuid |
string (uuid) | |
name |
string | Status name in Jira. |
type |
any | |
type_display |
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:
PatchedIssueStatusRequest - API Source:
support_issue_statuses_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 |
|---|---|---|---|
name |
string | Status name in Jira. | |
type |
any |
200 -
| Field | Type | Description |
|---|---|---|
url |
string (uri) | |
uuid |
string (uuid) | |
name |
string | Status name in Jira. |
type |
any | |
type_display |
string |
Delete
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 11 12 | |
- API Source:
support_issue_statuses_destroy
1 2 3 4 5 6 7 8 9 10 11 12 13 | |
| Name | Type | Required |
|---|---|---|
uuid |
string (uuid) | ✓ |
204 - No response body