Skip to main content
POST
/
locations
/
{locationId}
/
bookings
Schedule an appointment
curl --request POST \
  --url https://api.pickupbell.com/locations/{locationId}/bookings \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "scheduled_at": "2023-11-07T05:31:56Z",
  "customer_name": "<string>",
  "customer_phone": "<string>",
  "customer_address": "<string>",
  "service_type": "<string>",
  "duration_minutes": 123,
  "notes": "<string>",
  "lead_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
'
{
  "data": {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "location_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "lead_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "call_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "customer_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "customer_name": "<string>",
    "customer_phone": "<string>",
    "customer_address": "<string>",
    "service_type": "<string>",
    "scheduled_at": "2023-11-07T05:31:56Z",
    "duration_minutes": 123,
    "assigned_to": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "status": "scheduled",
    "external_calendar_event_id": "<string>",
    "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
scheduled_at
string<date-time>
required
customer_name
string
customer_phone
string
customer_address
string
service_type
string
duration_minutes
integer
notes
string
lead_id
string<uuid>

Response

201 - application/json

Created

data
object