Skip to main content
PATCH
/
locations
/
{locationId}
/
notifications
Update alert settings
curl --request PATCH \
  --url https://api.pickupbell.com/locations/{locationId}/notifications \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "sms_recipients": [
    "<string>"
  ],
  "email_recipients": [
    "<string>"
  ],
  "slack_webhook_url": "<string>",
  "daily_digest_time": "<string>",
  "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
}
'
{
  "data": {
    "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"
  }
}

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

Any subset of the writable fields. trigger_emergency is always coerced to true.

sms_recipients
string[]
email_recipients
string[]
slack_webhook_url
string | null
daily_digest_time
string
trigger_new_lead
boolean
trigger_booking
boolean
trigger_missed_callback
boolean
trigger_spam
boolean
trigger_every_call
boolean
weekly_monday_summary
boolean
weekly_slow_warning
boolean

Response

200 - application/json

Updated

data
object