Sign in

List appointments

documented

Returns a paginated list of appointments.

GET /appointmentsAppointmentno implementation yet0 runs
No implementation yet. Run it to have the agent write one, or open a pull request with your own.

Seed example (keychains curl)

npx -y keychains@latest curl "https://{{$subdomain}}.repairshopr.com/api/v1/appointments?api_key={{REPAIRSHOPR_API_KEY}}&page={{$page}}&limit={{$limit}}" \
  -X GET \
  -H "Accept: application/json" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  # Source: RepairShopr API docs indicate endpoints under /api/v1 on a per-subdomain host (e.g., https://yoursubdomain.repairshopr.com/api/v1/contacts) and that authentication can be supplied via api_key in the query string or via OAuth tokens. See api-docs.repairshopr.com for Swagger-based docs.