Skip to main content
GET
/
locations
/
{locationId}
/
calls
List recent calls
curl --request GET \
  --url https://api.pickupbell.com/locations/{locationId}/calls \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "location_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "customer_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "direction": "inbound",
      "caller_phone": "<string>",
      "caller_name": "<string>",
      "caller_address": "<string>",
      "outcome": "booked",
      "urgency_level": 2,
      "is_emergency": true,
      "is_returning_customer": true,
      "started_at": "2023-11-07T05:31:56Z",
      "ended_at": "2023-11-07T05:31:56Z",
      "duration_sec": 123,
      "service_type": "<string>",
      "issue_summary": "<string>",
      "detected_intent": "<string>",
      "estimated_value": 123,
      "appointment_date": "2023-12-25",
      "appointment_time": "<string>",
      "disconnection_reason": "<string>",
      "created_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).

Query Parameters

outcome
enum<string>
Available options:
booked,
transferred,
lead,
voicemail,
spam,
dropped,
other
emergency
boolean
since
string<date-time>
limit
integer
default:100
Required range: 1 <= x <= 500

Response

200 - application/json

Calls

data
object[]