> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://docs.simz.com/llms.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://docs.simz.com/_mcp/server.

# Submit Leads

> Request format and behavior for lead submission.

Submit leads with `POST /api/lead-receive-service/agent/receiveLead/{agentId}`.

## Request body

```json
{
  "leads": [
    {
      "phoneNumber": "+15551234567",
      "firstName": "Jane",
      "lastName": "Doe",
      "salesforceId": "003xx000004TmiQAAS",
      "campaignType": "demo_followup",
      "customData": {
        "leadId": "LEAD-001"
      }
    }
  ],
  "options": {
    "priority": "normal",
    "enableAMD": false,
    "webhookUrl": "https://example.com/simz/lead-results"
  }
}
```

## Partial success

If some leads are valid and others are rejected, SimZ can return `207` with accepted and rejected counts.