Skip to main content
GET
/
api
/
v1
/
personalize
/
status
/
{job_id}
Check personalization job status
curl --request GET \
  --url https://api.example.com/api/v1/personalize/status/{job_id} \
  --header 'Authorization: Bearer <token>'
{
  "job_id": "<string>",
  "status": "<string>",
  "progress_percentage": 50,
  "processed_leads": 1,
  "failed_leads": 1,
  "error_message": "<string>",
  "started_at": "<string>",
  "completed_at": "<string>",
  "credits_used": 123
}

Documentation Index

Fetch the complete documentation index at: https://docs.bavlio.com/llms.txt

Use this file to discover all available pages before exploring further.

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

Response

Successful Response

Response model for personalization job status.

job_id
string
required

Job identifier

status
string
required

Current job status

progress_percentage
integer
required

Progress percentage (0-100)

Required range: 0 <= x <= 100
processed_leads
integer
required

Number of processed leads

Required range: x >= 0
failed_leads
integer
required

Number of failed leads

Required range: x >= 0
error_message
string | null

Error message if failed

started_at
string | null

Job start timestamp

completed_at
string | null

Job completion timestamp

credits_used
integer | null

Credits consumed