AvaCloud

Create Token for an organization

Resolve the Auth0 client configured for an org and create a token to call AvaCloud API

GET
/v1/orgs/{orgID}/token

Authorization

Authorization<token>

Enter the Bearer token in the format: Bearer

In: header

Path Parameters

orgIDRequiredstring

Org ID

curl -X GET "https://example.com/v1/orgs/<string>/token" \
  -H "Authorization: <token>"

OK

{
  "access_token": "string",
  "expires_in": 0,
  "token_type": "string"
}