Skip to Content
Management APIAuthentication
View Markdown source

Authenticate requests

The production Management API base URL is https://rpc-dash.aurpay.net/api. Send the PAT as a Bearer credential to a /v2 route:

export RPC_GATEWAY_API_URL='https://rpc-dash.aurpay.net/api' export RPC_GATEWAY_PAT='<personal-access-token>' curl "$RPC_GATEWAY_API_URL/v2/apps" \ -H "Authorization: Bearer $RPC_GATEWAY_PAT"

Keep the PAT in a secret manager or protected environment variable, with redaction enabled for source-control checks, command history, logs, URLs, and support requests.

Use the PAT as the request’s sole authentication credential.

A successful request returns HTTP 200 in the Management API response envelope. Then select only the scopes your client needs.

Last updated on