Sign in

Obtain access token

documented

Obtain an OAuth 2.0 access token using client credentials.

POST /oauth/tokenAuthenticationno 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://{{$account_subdomain}}.caspio.com/oauth/token" \
  -X POST \
  -H "Content-Type: application/x-www-form-urlencoded" \
  -H "Accept: application/json" \
  -d "grant_type=client_credentials&client_id={{$client_id}}&client_secret={{$client_secret}}"