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.
GuidesAPI Reference
GuidesAPI Reference
  • Panic API Reference
      • POSTExchange credentials for a token
      • POSTMint a callout-scoped token
LogoLogo
Panic API ReferenceAuthentication

Mint a callout-scoped token

POST
/panic-api/v2/oauth/calloutToken
POST
/panic-api/v2/oauth/calloutToken
$curl -X POST https://staging-panic.aura.services/panic-api/v2/oauth/calloutToken \
> -H "Authorization: Bearer <token>" \
> -H "Content-Type: application/json" \
> -d '{
> "customerId": 178921
>}'
1{
2 "access_token": "string",
3 "token_type": "Bearer",
4 "expires_in": 3600
5}

Creates a short-lived token scoped to a single customer’s callout flow. Use this when a device or guest session should raise or update only that customer’s callouts.

Was this page helpful?
Previous

Create a customer

Next
Built with

Authentication

AuthorizationBearer

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

Request

This endpoint expects an object.
customerIdintegerRequired

Response

Callout-scoped token created.

access_tokenstring
token_typestring
expires_ininteger

Errors

401
Unauthorized Error
404
Not Found Error