curl --request POST \
--url https://api.paubox.net/v1/orca/{username}/subscribers_bulk_create \
--header 'Content-Type: application/json' \
--header 'authorization: <api-key>' \
--data '
{
"subscribers": [
{
"email": "jsmith@example.com",
"first_name": "<string>",
"last_name": "<string>",
"custom_fields": [
{}
]
}
],
"subscription_list_id": "<string>"
}
'{
"data": {
"num_subscribers_added": 123
}
}Creates one or more subscriber records. Adds to subscription list if specified, otherwise adds to all contacts.
curl --request POST \
--url https://api.paubox.net/v1/orca/{username}/subscribers_bulk_create \
--header 'Content-Type: application/json' \
--header 'authorization: <api-key>' \
--data '
{
"subscribers": [
{
"email": "jsmith@example.com",
"first_name": "<string>",
"last_name": "<string>",
"custom_fields": [
{}
]
}
],
"subscription_list_id": "<string>"
}
'{
"data": {
"num_subscribers_added": 123
}
}Documentation Index
Fetch the complete documentation index at: https://docs.paubox.com/llms.txt
Use this file to discover all available pages before exploring further.
Token-based authentication. Use format: "Token token=<API_KEY>" where <API_KEY> is your API key
Subscribers created successfully
Show child attributes