Skip to main content
GET
/
cases
/
bulk-jobs
/
{id}
Get bulk job status
curl --request GET \
  --url https://api.wirespeed.co/cases/bulk-jobs/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "type": "case-close",
  "status": "pending",
  "totalCount": 123,
  "processedCount": 123,
  "failedCount": 123,
  "createdAt": "<string>",
  "error": "<string>",
  "completedAt": "<string>"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

Bulk job ID

Response

id
string
required
type
enum<string>
required
Available options:
case-close
status
enum<string>
required
Available options:
pending,
processing,
completed,
failed
totalCount
number
required
processedCount
number
required
failedCount
number
required
createdAt
string
required
error
string
completedAt
string