> ## 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.

# Get notification settings



## OpenAPI

````yaml GET /locations/{locationId}/notifications
openapi: 3.1.0
info:
  title: PickupBell API
  version: 1.0.0
  description: >
    Public REST surface for PickupBell — the AI receptionist for HVAC, plumbing,
    and home-services contractors.


    All requests authenticate via `Authorization: Bearer <uuid>`. Every response
    is JSON with shape `{ "data": … }` (or `{ "error": { "code", "message",
    "details" } }` on failure).


    Only endpoints an API token can successfully call are documented here.
    UI-only operations (create location, invite member, mint / revoke API key,
    billing checkout / portal) require a user session and are not part of the
    public API.
  contact:
    email: support@pickupbell.com
servers:
  - url: https://api.pickupbell.com
    description: >-
      Production (vanity domain — Vercel rewrite proxies to
      app.pickupbell.com/api/v1)
  - url: https://app.pickupbell.com/api/v1
    description: App-domain alias (works without the rewrite)
  - url: http://localhost:3000/api/v1
    description: Local development
security:
  - bearerAuth: []
tags:
  - name: Me
  - name: Locations
  - name: Members
  - name: API keys
  - name: Agent
  - name: Business hours
  - name: Call forwarding
  - name: FAQs
  - name: Pricebook
  - name: Calls
  - name: Leads
  - name: Bookings
  - name: Insights
  - name: Notifications
  - name: Integrations
  - name: Webhook endpoints
paths:
  /locations/{locationId}/notifications:
    parameters:
      - $ref: '#/components/parameters/WorkspaceId'
    get:
      tags:
        - Notifications
      summary: Alert routing + toggles
      operationId: getNotifications
      parameters:
        - name: include
          in: query
          description: Comma-separated extras. `log` adds `notification_log` entries.
          schema:
            type: string
            example: log
      responses:
        '200':
          description: Settings
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: object
                    properties:
                      settings:
                        $ref: '#/components/schemas/NotificationSettings'
                      log:
                        type: array
                        items:
                          $ref: '#/components/schemas/NotificationLogEntry'
components:
  parameters:
    WorkspaceId:
      name: locationId
      in: path
      required: true
      schema:
        type: string
      description: Location UUID or slug (e.g. `premier-hvac`).
  schemas:
    NotificationSettings:
      type: object
      properties:
        location_id:
          type: string
          format: uuid
        sms_recipients:
          type: array
          items:
            type: string
        email_recipients:
          type: array
          items:
            type: string
        slack_webhook_url:
          type: string
          nullable: true
        daily_digest_time:
          type: string
          example: '07:00'
        trigger_emergency:
          type: boolean
          description: Always `true` — cannot be disabled.
        trigger_new_lead:
          type: boolean
        trigger_booking:
          type: boolean
        trigger_missed_callback:
          type: boolean
        trigger_spam:
          type: boolean
        trigger_every_call:
          type: boolean
        weekly_monday_summary:
          type: boolean
        weekly_slow_warning:
          type: boolean
        updated_at:
          type: string
          format: date-time
    NotificationLogEntry:
      type: object
      properties:
        id:
          type: string
          format: uuid
        location_id:
          type: string
          format: uuid
        channel:
          type: string
          enum:
            - sms
            - email
            - slack
            - log
        recipient:
          type: string
        event_type:
          type: string
        body:
          type: string
        status:
          type: string
          enum:
            - queued
            - sent
            - failed
            - skipped
        error:
          type: string
          nullable: true
        sent_at:
          type: string
          format: date-time
          nullable: true
        created_at:
          type: string
          format: date-time
        call_id:
          type: string
          format: uuid
          nullable: true
        lead_id:
          type: string
          format: uuid
          nullable: true
        booking_id:
          type: string
          format: uuid
          nullable: true
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: uuid
      description: Location-scoped API token from **Settings → API & MCP**.

````