For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
GuidesWhite-labelAPI Reference
GuidesWhite-labelAPI Reference
  • Panic API Reference
      • POSTCreate a scheduled service
      • DELCancel a scheduled service
    • Errors & status codes
LogoLogo
Panic API ReferenceScheduled Services

Create a scheduled service

POST
/panic-api/v2/scheduled/:serviceTypeOrRequestId
POST
/panic-api/v2/scheduled/:serviceTypeOrRequestId
$curl -X POST https://staging-panic.aura.services/panic-api/v2/scheduled/serviceTypeOrRequestId \
> -H "Authorization: Bearer <token>" \
> -H "Content-Type: application/json" \
> -d '{
> "customerId": 12345,
> "scheduledAt": "2024-07-20T14:00:00Z"
>}'
1{
2 "id": "a1b2c3d4-e5f6-7890-ab12-cd34ef567890",
3 "status": "scheduled"
4}

Creates a scheduled service request. Public docs use a path value for service type; the route remains documented with a neutral parameter name because create and cancel share the same path shape.

Was this page helpful?
Previous

Cancel a scheduled service

Next
Built with

Authentication

AuthorizationBearer

Bearer authentication of the form Bearer <token>, where token is your auth token.

Path parameters

serviceTypeOrRequestIdstringRequired

Service type when creating a scheduled service; scheduled request ID when cancelling one.

Request

This endpoint expects an object.
customerIdintegerRequired
scheduledAtdatetimeRequired
latitudedoubleOptional
longitudedoubleOptional

Response

Scheduled service created.
idstring
statusstring

Errors

400
Bad Request Error
401
Unauthorized Error