Support Attachments
Operations Summary
| Method | Endpoint | Description |
|---|---|---|
| GET | /api/support-attachments/ |
List Support Attachments |
| GET | /api/support-attachments/{uuid}/ |
Retrieve |
| POST | /api/support-attachments/ |
Create |
| DELETE | /api/support-attachments/{uuid}/ |
Delete |
List Support Attachments
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 | |
- API Source:
support_attachments_list
1 2 3 4 5 6 7 8 9 10 | |
| Name | Type | Description |
|---|---|---|
field |
array | |
issue |
string | |
issue_uuid |
string (uuid) | |
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 |
|---|---|
url |
string (uri) |
uuid |
string (uuid) |
issue |
string (uri) |
issue_key |
string |
created |
string (date-time) |
file |
string (uri) |
mime_type |
string |
file_size |
integer |
file_name |
string |
backend_id |
string |
destroy_is_available |
boolean |
Retrieve
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 11 12 | |
- API Source:
support_attachments_retrieve
1 2 3 4 5 6 7 8 9 10 11 12 13 | |
| Name | Type | Required |
|---|---|---|
uuid |
string (uuid) | ✓ |
| Name | Type |
|---|---|
field |
array |
200 -
| Field | Type |
|---|---|
url |
string (uri) |
uuid |
string (uuid) |
issue |
string (uri) |
issue_key |
string |
created |
string (date-time) |
file |
string (uri) |
mime_type |
string |
file_size |
integer |
file_name |
string |
backend_id |
string |
destroy_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:
AttachmentRequest - API Source:
support_attachments_create
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | |
| Field | Type | Required |
|---|---|---|
issue |
string (uri) | ✓ |
file |
string (binary) | ✓ |
201 -
| Field | Type |
|---|---|
url |
string (uri) |
uuid |
string (uuid) |
issue |
string (uri) |
issue_key |
string |
created |
string (date-time) |
file |
string (uri) |
mime_type |
string |
file_size |
integer |
file_name |
string |
backend_id |
string |
destroy_is_available |
boolean |
Delete
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 11 12 | |
- API Source:
support_attachments_destroy
1 2 3 4 5 6 7 8 9 10 11 12 13 | |
| Name | Type | Required |
|---|---|---|
uuid |
string (uuid) | ✓ |
204 - No response body