Sign in Start for free

Token Exchange

Exchange an Oidc token for an access token that allows access to the API

POST /api/token/v1

Request Body

  • audience string (required)
    Minimum length 1.
  • grant_type string (required)
    Minimum length 1.
  • subject_token string (required)
    Minimum length 1.
  • subject_token_type string (required)
    Minimum length 1.

Response

200 — OK

Example Request

JSON
{
  "audience": "string",
  "grant_type": "string",
  "subject_token": "string",
  "subject_token_type": "string"
}