Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
A unique identifier representing the bulk job
curl --request GET \
--url https://api.courier.com/bulk/{job_id} \
--header 'Authorization: Bearer <token>'{
"job": {
"definition": {
"template": "<string>",
"brand": "<string>",
"data": {},
"event": "<string>",
"locale": {},
"override": {}
},
"enqueued": 123,
"failures": 123,
"received": 123,
"status": "CREATED"
}
}Get a bulk job
curl --request GET \
--url https://api.courier.com/bulk/{job_id} \
--header 'Authorization: Bearer <token>'{
"job": {
"definition": {
"template": "<string>",
"brand": "<string>",
"data": {},
"event": "<string>",
"locale": {},
"override": {}
},
"enqueued": 123,
"failures": 123,
"received": 123,
"status": "CREATED"
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
A unique identifier representing the bulk job
Show child attributes