Skip to main content

Single Lead (Create & Init)

curl -X POST "https://crm.uservox.ai/api/v1/leads/initiate" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_TOKEN" \
  -d '{
    "lead": {
      "name": "Alex Rider",
      "email": "[email protected]",
      "projectId": "<Your Project Id>",
      "processId": "<Lead Process Id>",
      "metadata": {"source": "website"}
    },
    "init": true
  }'

Single Lead (Existing)

curl -X POST "https://crm.uservox.ai/api/v1/leads/initiate" \
  -H "Authorization: Bearer YOUR_API_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"leadId": "507f1f77bcf86cd799439013"}'

Bulk Create

curl -X POST "https://crm.uservox.ai/api/v1/leads/bulk/initiate" \
  -H "Authorization: Bearer YOUR_API_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "leads": [
      {"firstName": "John", "email": "[email protected]", "projectId": "<Project>", "processId": "<Process>"},
      {"firstName": "Jane", "email": "[email protected]", "projectId": "<Project>", "processId": "<Process>"}
    ]
  }'

Bulk Process Existing

curl -X POST "https://crm.uservox.ai/api/v1/leads/bulk/initiate" \
  -H "Authorization: Bearer YOUR_API_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"leadIds": ["507f1f77bcf86cd799439013", "507f1f77bcf86cd799439014"]}'