Skip to main content
GET
/
locations
/
{locationId}
/
notifications
Alert routing + toggles
curl --request GET \
  --url https://api.pickupbell.com/locations/{locationId}/notifications \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "settings": {
      "location_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "sms_recipients": [
        "<string>"
      ],
      "email_recipients": [
        "<string>"
      ],
      "slack_webhook_url": "<string>",
      "daily_digest_time": "07:00",
      "trigger_emergency": true,
      "trigger_new_lead": true,
      "trigger_booking": true,
      "trigger_missed_callback": true,
      "trigger_spam": true,
      "trigger_every_call": true,
      "weekly_monday_summary": true,
      "weekly_slow_warning": true,
      "updated_at": "2023-11-07T05:31:56Z"
    },
    "log": [
      {
        "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "location_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "channel": "sms",
        "recipient": "<string>",
        "event_type": "<string>",
        "body": "<string>",
        "status": "queued",
        "error": "<string>",
        "sent_at": "2023-11-07T05:31:56Z",
        "created_at": "2023-11-07T05:31:56Z",
        "call_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "lead_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "booking_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
      }
    ]
  }
}

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

include
string

Comma-separated extras. log adds notification_log entries.

Example:

"log"

Response

200 - application/json

Settings

data
object