Scheduler Zero
REST APIAPI referenceLeads

Create leads in bulk into a lead list

Requires the `lead:create` permission.

POST
/leads/bulk

Requires the lead:create permission.

Authorization

ApiKeyAuth
x-api-key<token>

API key created under Settings → API Keys. Scoped to a single workspace.

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

application/json

application/json

curl -X POST "https://example.com/leads/bulk" \  -H "Content-Type: application/json" \  -d '{    "leadListId": "cf1ea3ab-6c18-4de4-81e1-803f9fe6e6ec",    "leads": [      {        "email": "user@example.com",        "firstName": "string",        "lastName": "string"      }    ]  }'
{  "created": 0}