Event Subscriptions
Operations Summary
| Method | Endpoint | Description |
|---|---|---|
| GET | /api/event-subscriptions/ |
List Event Subscriptions |
| GET | /api/event-subscriptions/{uuid}/ |
Retrieve |
| POST | /api/event-subscriptions/ |
Create |
| DELETE | /api/event-subscriptions/{uuid}/ |
Delete |
List Event Subscriptions
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 | |
- API Source:
event_subscriptions_list
1 2 3 4 5 6 7 8 9 10 | |
| Name | Type | Description |
|---|---|---|
o |
array | Ordering |
page |
integer | A page number within the paginated result set. |
page_size |
integer | Number of results to return per page. |
user_username |
string | |
user_uuid |
string |
200 -
The response body is an array of objects, where each object has the following structure:
| Field | Type | Description |
|---|---|---|
uuid |
string (uuid) | |
url |
string (uri) | |
description |
string | |
user |
string (uri) | |
user_uuid |
string (uuid) | |
user_username |
string | Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters |
user_full_name |
string | |
observable_objects |
any | List of objects to observe. Each item must have 'object_type' (one of: order, user_role, resource, offering_user, importable_resources, service_account, course_account, resource_periodic_limits) and optionally 'object_id' (integer). Example: [{"object_type": "resource"}, {"object_type": "order", "object_id": 123}] |
created |
string (date-time) | |
modified |
string (date-time) | |
source_ip |
any | An IPv4 or IPv6 address. |
Retrieve
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 11 12 | |
- API Source:
event_subscriptions_retrieve
1 2 3 4 5 6 7 8 9 10 11 12 13 | |
| Name | Type | Required |
|---|---|---|
uuid |
string (uuid) | ✓ |
200 -
| Field | Type | Description |
|---|---|---|
uuid |
string (uuid) | |
url |
string (uri) | |
description |
string | |
user |
string (uri) | |
user_uuid |
string (uuid) | |
user_username |
string | Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters |
user_full_name |
string | |
observable_objects |
any | List of objects to observe. Each item must have 'object_type' (one of: order, user_role, resource, offering_user, importable_resources, service_account, course_account, resource_periodic_limits) and optionally 'object_id' (integer). Example: [{"object_type": "resource"}, {"object_type": "order", "object_id": 123}] |
created |
string (date-time) | |
modified |
string (date-time) | |
source_ip |
any | An IPv4 or IPv6 address. |
Create
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | |
- Model Source:
EventSubscriptionRequest - API Source:
event_subscriptions_create
1 2 3 4 5 6 7 8 9 10 | |
| Field | Type | Required | Description |
|---|---|---|---|
description |
string | ||
observable_objects |
any | List of objects to observe. Each item must have 'object_type' (one of: order, user_role, resource, offering_user, importable_resources, service_account, course_account, resource_periodic_limits) and optionally 'object_id' (integer). Example: [{"object_type": "resource"}, {"object_type": "order", "object_id": 123}] |
201 -
| Field | Type | Description |
|---|---|---|
uuid |
string (uuid) | |
url |
string (uri) | |
description |
string | |
user |
string (uri) | |
user_uuid |
string (uuid) | |
user_username |
string | Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters |
user_full_name |
string | |
observable_objects |
any | List of objects to observe. Each item must have 'object_type' (one of: order, user_role, resource, offering_user, importable_resources, service_account, course_account, resource_periodic_limits) and optionally 'object_id' (integer). Example: [{"object_type": "resource"}, {"object_type": "order", "object_id": 123}] |
created |
string (date-time) | |
modified |
string (date-time) | |
source_ip |
any | An IPv4 or IPv6 address. |
Delete
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 11 12 | |
- API Source:
event_subscriptions_destroy
1 2 3 4 5 6 7 8 9 10 11 12 13 | |
| Name | Type | Required |
|---|---|---|
uuid |
string (uuid) | ✓ |
204 - No response body