Hooks Email
Operations Summary
| Method | Endpoint | Description |
|---|---|---|
| GET | /api/hooks-email/ |
List Hooks Email |
| GET | /api/hooks-email/{uuid}/ |
Retrieve |
| POST | /api/hooks-email/ |
Create |
| PUT | /api/hooks-email/{uuid}/ |
Update |
| PATCH | /api/hooks-email/{uuid}/ |
Partial Update |
| DELETE | /api/hooks-email/{uuid}/ |
Delete |
List Hooks Email
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 | |
- API Source:
hooks_email_list
1 2 3 4 5 6 7 8 9 10 | |
| Name | Type | Description |
|---|---|---|
author_email |
string | |
author_fullname |
string | User full name contains |
author_username |
string | |
author_uuid |
string (uuid) | |
email |
string | |
is_active |
boolean | |
last_published |
string (date-time) | |
page |
integer | A page number within the paginated result set. |
page_size |
integer | Number of results to return per page. |
query |
string | Filter by author name, username and email |
200 -
The response body is an array of objects, where each object has the following structure:
| Field | Type |
|---|---|
url |
string (uri) |
uuid |
string (uuid) |
is_active |
boolean |
author_uuid |
string (uuid) |
event_types |
array of strings |
event_groups |
array of strings |
created |
string (date-time) |
modified |
string (date-time) |
hook_type |
string |
author_fullname |
string |
author_username |
string |
author_email |
string |
email |
string (email) |
Retrieve
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 11 12 | |
- API Source:
hooks_email_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) |
is_active |
boolean |
author_uuid |
string (uuid) |
event_types |
array of strings |
event_groups |
array of strings |
created |
string (date-time) |
modified |
string (date-time) |
hook_type |
string |
author_fullname |
string |
author_username |
string |
author_email |
string |
email |
string (email) |
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:
EmailHookRequest - API Source:
hooks_email_create
1 2 3 4 5 6 7 8 9 10 11 12 13 | |
| Field | Type | Required |
|---|---|---|
is_active |
boolean | |
event_types |
array of strings | |
event_groups |
array of strings | |
email |
string (email) | ✓ |
201 -
| Field | Type |
|---|---|
url |
string (uri) |
uuid |
string (uuid) |
is_active |
boolean |
author_uuid |
string (uuid) |
event_types |
array of strings |
event_groups |
array of strings |
created |
string (date-time) |
modified |
string (date-time) |
hook_type |
string |
author_fullname |
string |
author_username |
string |
author_email |
string |
email |
string (email) |
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:
EmailHookRequest - API Source:
hooks_email_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 |
|---|---|---|
is_active |
boolean | |
event_types |
array of strings | |
event_groups |
array of strings | |
email |
string (email) | ✓ |
200 -
| Field | Type |
|---|---|
url |
string (uri) |
uuid |
string (uuid) |
is_active |
boolean |
author_uuid |
string (uuid) |
event_types |
array of strings |
event_groups |
array of strings |
created |
string (date-time) |
modified |
string (date-time) |
hook_type |
string |
author_fullname |
string |
author_username |
string |
author_email |
string |
email |
string (email) |
Partial Update
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | |
- Model Source:
PatchedEmailHookRequest - API Source:
hooks_email_partial_update
1 2 3 4 5 6 7 8 9 10 11 12 13 | |
| Name | Type | Required |
|---|---|---|
uuid |
string (uuid) | ✓ |
| Field | Type | Required |
|---|---|---|
is_active |
boolean | |
event_types |
array of strings | |
event_groups |
array of strings | |
email |
string (email) |
200 -
| Field | Type |
|---|---|
url |
string (uri) |
uuid |
string (uuid) |
is_active |
boolean |
author_uuid |
string (uuid) |
event_types |
array of strings |
event_groups |
array of strings |
created |
string (date-time) |
modified |
string (date-time) |
hook_type |
string |
author_fullname |
string |
author_username |
string |
author_email |
string |
email |
string (email) |
Delete
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 11 12 | |
- API Source:
hooks_email_destroy
1 2 3 4 5 6 7 8 9 10 11 12 13 | |
| Name | Type | Required |
|---|---|---|
uuid |
string (uuid) | ✓ |
204 - No response body