Mixedbread
EndpointsIntegrations

Update Installation Schedule

PUT/v1/integrations/installations/{installation_id}/schedule

Authorization

Authorizationstringrequired

Bearer token for API authentication. Format: `Bearer YOUR_API_KEY`

Path Parameters

installation_idstring(uuid)required

Installation ID, as returned when the account connected

Request Body

intervalenumrequired

How often to poll for new and changed content; `off` stops the periodic sync

Possible values

offten_minuteshourlydailyweekly

Only Granola polls. Gmail, Google Drive, and Slack receive change notifications from the provider and answer 422.

Response Body

Request
cURL
PUT/v1/integrations/installations/{installation_id}/schedule
curl -X PUT https://api.mixedbread.com/v1/integrations/installations/2f1c9a8e-6b4d-4e3a-9c1f-7d8e5b6a4c21/schedule \
  -H 'Content-Type: application/json' \
  -H 'Authorization: Bearer YOUR_API_KEY' \
  -d '{
    "interval": "hourly"
  }'
Response
JSON
{
  "data": {
    "installation_id": "2f1c9a8e-6b4d-4e3a-9c1f-7d8e5b6a4c21",
    "interval": "hourly",
    "updated_at": "2026-09-05T17:25:12.338038+00:00"
  }
}