Skip to main content
PUT
/
locations
/
{locationId}
/
business-hours
Replace the week in one call
curl --request PUT \
  --url https://api.pickupbell.com/locations/{locationId}/business-hours \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "hours": [
    {
      "day_of_week": 3,
      "is_open": true,
      "open_time": "08:00",
      "close_time": "18:00"
    }
  ]
}
'
{
  "data": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "location_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "day_of_week": 3,
      "is_open": true,
      "open_time": "08:00",
      "close_time": "18:00"
    }
  ]
}

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
hours
object[]
required

Response

200 - application/json

Upserted rows

data
object[]