Skip to main content
POST
/
locations
/
{locationId}
/
leads
Create a lead manually
curl --request POST \
  --url https://api.pickupbell.com/locations/{locationId}/leads \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "phone": "<string>",
  "email": "jsmith@example.com",
  "address": "<string>",
  "service_type": "<string>",
  "urgency_level": 2,
  "estimated_value": 123,
  "notes": "<string>"
}
'
{
  "data": {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "location_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "call_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "customer_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "name": "<string>",
    "phone": "<string>",
    "email": "<string>",
    "address": "<string>",
    "service_type": "<string>",
    "urgency_level": 2,
    "estimated_value": 123,
    "status": "new",
    "status_changed_at": "2023-11-07T05:31:56Z",
    "assigned_to": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "notes": "<string>",
    "created_at": "2023-11-07T05:31:56Z",
    "updated_at": "2023-11-07T05:31:56Z"
  }
}

Documentation Index

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

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

Authorizations

Authorization
string
header
required

Location-scoped API token from Settings → API & MCP.

Path Parameters

locationId
string
required

Location UUID or slug (e.g. premier-hvac).

Body

application/json
name
string
phone
string
email
string<email>
address
string
service_type
string
urgency_level
integer
Required range: 0 <= x <= 5
estimated_value
number
notes
string

Response

201 - application/json

Created

data
object