External Links
Operations Summary
| Method | Endpoint | Description |
|---|---|---|
| GET | /api/external-links/ |
List external links |
| GET | /api/external-links/{uuid}/ |
Retrieve external link |
| POST | /api/external-links/ |
Create an external link |
| PUT | /api/external-links/{uuid}/ |
Update an external link |
| PATCH | /api/external-links/{uuid}/ |
Partially update an external link |
| DELETE | /api/external-links/{uuid}/ |
Delete an external link |
List external links
Retrieve a list of external links available in the system.
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 | |
- API Source:
external_links_list
1 2 3 4 5 6 7 8 9 10 | |
| Name | Type | Description |
|---|---|---|
o |
string | Which field to use when ordering the results. |
page |
integer | A page number within the paginated result set. |
page_size |
integer | Number of results to return per page. |
query |
string | Filter by name, link or description |
200 -
The response body is an array of objects, where each object has the following structure:
| Field | Type |
|---|---|
url |
string (uri) |
uuid |
string (uuid) |
name |
string |
description |
string |
link |
string (uri) |
image |
string (uri) |
created |
string (date-time) |
modified |
string (date-time) |
Retrieve external link
Fetch the details of a specific external link by its UUID.
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 11 12 | |
- API Source:
external_links_retrieve
1 2 3 4 5 6 7 8 9 10 11 12 13 | |
| Name | Type | Required |
|---|---|---|
uuid |
string (uuid) | ✓ |
200 -
| Field | Type |
|---|---|
url |
string (uri) |
uuid |
string (uuid) |
name |
string |
description |
string |
link |
string (uri) |
image |
string (uri) |
created |
string (date-time) |
modified |
string (date-time) |
Create an external link
Create a new external link. This action is restricted to staff users.
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:
ExternalLinkRequest - API Source:
external_links_create
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | |
| Field | Type | Required |
|---|---|---|
name |
string | ✓ |
description |
string | |
link |
string (uri) | ✓ |
image |
string (binary) |
201 -
| Field | Type |
|---|---|
url |
string (uri) |
uuid |
string (uuid) |
name |
string |
description |
string |
link |
string (uri) |
image |
string (uri) |
created |
string (date-time) |
modified |
string (date-time) |
Update an external link
Update an existing external link. This action is restricted to staff users.
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:
ExternalLinkRequest - API Source:
external_links_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 |
|---|---|---|
name |
string | ✓ |
description |
string | |
link |
string (uri) | ✓ |
image |
string (binary) |
200 -
| Field | Type |
|---|---|
url |
string (uri) |
uuid |
string (uuid) |
name |
string |
description |
string |
link |
string (uri) |
image |
string (uri) |
created |
string (date-time) |
modified |
string (date-time) |
Partially update an external link
Partially update an existing external link. This action is restricted to staff users.
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | |
- Model Source:
PatchedExternalLinkRequest - API Source:
external_links_partial_update
1 2 3 4 5 6 7 8 9 10 11 12 13 | |
| Name | Type | Required |
|---|---|---|
uuid |
string (uuid) | ✓ |
| Field | Type | Required |
|---|---|---|
name |
string | |
description |
string | |
link |
string (uri) | |
image |
string (binary) |
200 -
| Field | Type |
|---|---|
url |
string (uri) |
uuid |
string (uuid) |
name |
string |
description |
string |
link |
string (uri) |
image |
string (uri) |
created |
string (date-time) |
modified |
string (date-time) |
Delete an external link
Delete an existing external link. This action is restricted to staff users.
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 11 12 | |
- API Source:
external_links_destroy
1 2 3 4 5 6 7 8 9 10 11 12 13 | |
| Name | Type | Required |
|---|---|---|
uuid |
string (uuid) | ✓ |
204 - No response body