Audiences
AuthTokens
Brands
Inbound
Lists
Messages
Notifications
Profiles
Tenants
User Preferences
User Tenants
Bulk
Get users
Get Bulk Job Users
GET
/
bulk
/
{job_id}
/
users
Copy
Ask AI
curl --request GET \
--url https://api.courier.com/bulk/{job_id}/users \
--header 'Authorization: Bearer <token>'
Copy
Ask AI
{
"items": [
{
"preferences": {
"categories": {},
"notifications": {}
},
"profile": "<any>",
"recipient": "<string>",
"data": "<any>",
"to": {
"account_id": "<string>",
"context": {
"tenant_id": "<string>"
},
"data": {},
"email": "<string>",
"locale": "<string>",
"user_id": "<string>",
"phone_number": "<string>",
"preferences": {
"categories": {},
"notifications": {},
"templateId": "<string>"
},
"tenant_id": "<string>"
},
"status": "PENDING",
"messageId": "<string>"
}
],
"paging": {
"cursor": "<string>",
"more": true
}
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
A unique identifier representing the bulk job
Query Parameters
A unique identifier that allows for fetching the next set of users added to the bulk job
Response
200
application/json
The response is of type object
.
Copy
Ask AI
curl --request GET \
--url https://api.courier.com/bulk/{job_id}/users \
--header 'Authorization: Bearer <token>'
Copy
Ask AI
{
"items": [
{
"preferences": {
"categories": {},
"notifications": {}
},
"profile": "<any>",
"recipient": "<string>",
"data": "<any>",
"to": {
"account_id": "<string>",
"context": {
"tenant_id": "<string>"
},
"data": {},
"email": "<string>",
"locale": "<string>",
"user_id": "<string>",
"phone_number": "<string>",
"preferences": {
"categories": {},
"notifications": {},
"templateId": "<string>"
},
"tenant_id": "<string>"
},
"status": "PENDING",
"messageId": "<string>"
}
],
"paging": {
"cursor": "<string>",
"more": true
}
}
Assistant
Responses are generated using AI and may contain mistakes.