Skip to main content
POST
/
api
/
v2
/
accounts
/
bulk
/
upload
Upload Bulk Beneficiaries
curl --request POST \
  --url https://sandbox.killb.app/api/v2/accounts/bulk/upload \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: multipart/form-data' \
  --form file='@example-file'
{
  "jobId": "e8d74b2f-86df-43b0-a9d9-72055a6b0432",
  "status": "PENDING",
  "message": "Bulk beneficiary job created successfully"
}

Documentation Index

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

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

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Body

multipart/form-data
file
file

Response

jobId
string
required
Example:

"e8d74b2f-86df-43b0-a9d9-72055a6b0432"

status
enum<string>
required
Available options:
PENDING,
PROCESSING,
COMPLETED,
FAILED
Example:

"PENDING"

message
string
required
Example:

"Bulk beneficiary job created successfully"