Endpoints
| Method | Path | Description |
|---|---|---|
POST | /api/v1/partner/provisioning/bulk | Submit a batch |
GET | /api/v1/partner/provisioning/bulk/{batch_id} | Poll batch status |
X-API-Key.
Submit batch body
202 Accepted with a batch_id.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Submit up to 100 subscribers in a single batch and poll for status.
| Method | Path | Description |
|---|---|---|
POST | /api/v1/partner/provisioning/bulk | Submit a batch |
GET | /api/v1/partner/provisioning/bulk/{batch_id} | Poll batch status |
X-API-Key.
{
"subscribers": [
{
"plan_version_id": "uuid",
"location_hash": "10-char hex",
"email": "string",
"firstname": "string",
"lastname": "string",
"street": "string",
"housenumber": "string",
"postalcode": "string",
"city": "string",
"province": "string"
}
]
}
202 Accepted with a batch_id.
{
"batch_id": "uuid",
"status": "in_progress | completed | completed_with_errors",
"total": 100,
"completed": 87,
"failed": 3,
"results": [
{
"email": "alice@example.com",
"status": "completed | pending | failed",
"subscription_id": "uuid",
"subscriber_id": "uuid",
"job_id": "uuid",
"error": "string (on failure only)"
}
]
}