Skip to main content
POST
/
api
/
v1
/
personalize
/
bulk
Queue bulk personalization requests
curl --request POST \
  --url https://api.example.com/api/v1/personalize/bulk \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "requests": [
    {
      "lead_data": {
        "data": {}
      },
      "sender_data": {
        "data": {}
      }
    }
  ]
}
'
{
  "job_id": "<string>",
  "status": "<string>",
  "message": "<string>",
  "estimated_time_seconds": 2,
  "credits_required": 123,
  "priority": "normal"
}

Documentation Index

Fetch the complete documentation index at: https://bavlio.mintlify.app/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.

Body

application/json

Request model for bulk personalization with validation.

requests
BavlioRequest · object[]
required

List of personalization requests

Required array length: 1 - 100 elements

Response

Successful Response

Enhanced response model for personalization job requests.

job_id
string
required

Unique job identifier

status
string
required

Job status

Pattern: ^(queued|processing|completed|failed)$
message
string
required

Status message

estimated_time_seconds
integer
required

Estimated processing time in seconds

Required range: x >= 1
credits_required
integer | null

Credits required for this operation

priority
string | null
default:normal

Job priority level