Skip to main content
GET
/
v1
/
console
/
attempts
/
jobs
/
{job_id}
Get Bulk Job Status
curl --request GET \
  --url http://localhost:8000/v1/console/attempts/jobs/{job_id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "amount": 123,
    "content_id": "<string>",
    "created_at": "2023-11-07T05:31:56Z",
    "dry_run": true,
    "failed_rows": 123,
    "job_id": "<string>",
    "job_type": "<string>",
    "processed_rows": 123,
    "reason": "<string>",
    "results": [
      {
        "success": true,
        "user_id": "<string>",
        "error": "<string>"
      }
    ],
    "succeeded_rows": 123,
    "total_rows": 123,
    "completed_at": "2023-11-07T05:31:56Z",
    "expires_at": "2023-11-07T05:31:56Z",
    "started_at": "2023-11-07T05:31:56Z"
  },
  "message": "<string>",
  "success": true
}

Authorizations

Authorization
string
header
required

Enter your JWT access token

Path Parameters

job_id
string
required

Response

Successful Response

data
BulkJobDetail · object
message
string | null
success
boolean
default:true