Broadcast Messages
Operations Summary
| Method | Endpoint | Description |
|---|---|---|
| Core CRUD | ||
| GET | /api/broadcast-messages/ |
List Broadcast Messages |
| GET | /api/broadcast-messages/{uuid}/ |
Retrieve |
| POST | /api/broadcast-messages/ |
Create |
| PUT | /api/broadcast-messages/{uuid}/ |
Update |
| PATCH | /api/broadcast-messages/{uuid}/ |
Partial Update |
| DELETE | /api/broadcast-messages/{uuid}/ |
Delete |
| Other Actions | ||
| GET | /api/broadcast-messages/recipients/ |
Recipients |
| POST | /api/broadcast-messages/{uuid}/schedule/ |
Schedule |
| POST | /api/broadcast-messages/{uuid}/send/ |
Send |
Core CRUD
List Broadcast Messages
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 | |
- API Source:
broadcast_messages_list
1 2 3 4 5 6 7 8 9 10 | |
| Name | Type | Description |
|---|---|---|
field |
array | |
o |
array | Ordering |
page |
integer | A page number within the paginated result set. |
page_size |
integer | Number of results to return per page. |
state |
string | Enum: DRAFT, SCHEDULED, SENT |
subject |
string |
200 -
The response body is an array of objects, where each object has the following structure:
| Field | Type |
|---|---|
uuid |
string (uuid) |
created |
string (date-time) |
subject |
string |
body |
string |
query |
any |
author_full_name |
string |
emails |
any |
state |
any |
send_at |
string (date) |
Retrieve
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 11 12 | |
- API Source:
broadcast_messages_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 |
|---|---|
uuid |
string (uuid) |
created |
string (date-time) |
subject |
string |
body |
string |
query |
any |
author_full_name |
string |
emails |
any |
state |
any |
send_at |
string (date) |
Create
1 2 3 4 5 6 7 | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | |
- Model Source:
BroadcastMessageRequest - API Source:
broadcast_messages_create
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | |
| Field | Type | Required |
|---|---|---|
subject |
string | ✓ |
body |
string | ✓ |
query |
any | ✓ |
send_at |
string (date) |
201 -
| Field | Type |
|---|---|
uuid |
string (uuid) |
created |
string (date-time) |
subject |
string |
body |
string |
query |
any |
author_full_name |
string |
emails |
any |
state |
any |
send_at |
string (date) |
Update
1 2 3 4 5 6 7 | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | |
- Model Source:
BroadcastMessageRequest - API Source:
broadcast_messages_update
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | |
| Name | Type | Required |
|---|---|---|
uuid |
string (uuid) | ✓ |
| Field | Type | Required |
|---|---|---|
subject |
string | ✓ |
body |
string | ✓ |
query |
any | ✓ |
send_at |
string (date) |
200 -
| Field | Type |
|---|---|
uuid |
string (uuid) |
created |
string (date-time) |
subject |
string |
body |
string |
query |
any |
author_full_name |
string |
emails |
any |
state |
any |
send_at |
string (date) |
Partial Update
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | |
- Model Source:
PatchedBroadcastMessageRequest - API Source:
broadcast_messages_partial_update
1 2 3 4 5 6 7 8 9 10 11 12 13 | |
| Name | Type | Required |
|---|---|---|
uuid |
string (uuid) | ✓ |
| Field | Type | Required |
|---|---|---|
subject |
string | |
body |
string | |
query |
any | |
send_at |
string (date) |
200 -
| Field | Type |
|---|---|
uuid |
string (uuid) |
created |
string (date-time) |
subject |
string |
body |
string |
query |
any |
author_full_name |
string |
emails |
any |
state |
any |
send_at |
string (date) |
Delete
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 11 12 | |
- API Source:
broadcast_messages_destroy
1 2 3 4 5 6 7 8 9 10 11 12 13 | |
| Name | Type | Required |
|---|---|---|
uuid |
string (uuid) | ✓ |
204 - No response body
Other Actions
Recipients
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 | |
- API Source:
broadcast_messages_recipients_retrieve
1 2 3 4 5 6 7 8 9 10 | |
| Name | Type |
|---|---|
field |
array |
200 -
| Field | Type |
|---|---|
uuid |
string (uuid) |
created |
string (date-time) |
subject |
string |
body |
string |
query |
any |
author_full_name |
string |
emails |
any |
state |
any |
send_at |
string (date) |
Schedule
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 11 12 | |
- API Source:
broadcast_messages_schedule
1 2 3 4 5 6 7 8 9 10 11 12 13 | |
| Name | Type | Required |
|---|---|---|
uuid |
string (uuid) | ✓ |
200 - No response body
Send
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 11 12 | |
- API Source:
broadcast_messages_send
1 2 3 4 5 6 7 8 9 10 11 12 13 | |
| Name | Type | Required |
|---|---|---|
uuid |
string (uuid) | ✓ |
200 - No response body