Skip to main content
GET
/
api
/
v1
/
provisioning
/
key
Retrieve a provisioned API key after Stripe Checkout. The claim token (checkout session ID) acts as the access credential. One-time retrieval only — the key cannot be shown again.
curl --request GET \
  --url https://api.backside.app/api/v1/provisioning/key \
  --header 'Authorization: Bearer <token>'
{
  "docs_url": "<string>",
  "key": "<string>",
  "key_hint": "<string>",
  "next_steps": "<string>",
  "plan": "<string>",
  "tenant_slug": "<string>"
}

Authorizations

Authorization
string
header
required

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

Query Parameters

token
string

Checkout session claim token

Response

API key retrieved

docs_url
string
required
key
string
required
key_hint
string
required
next_steps
string
required
plan
string
required
tenant_slug
string
required