Skip to main content
GET
/
bulk
/
{job_id}
Get a 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"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

job_id
string
required

A unique identifier representing the bulk job

Response

job
object
required