Skip to main content
POST
/
api
/
oauth2
/
token
Request Token
curl --request POST \
  --url https://api.rapidly.tech/api/oauth2/token \
  --header 'Content-Type: application/x-www-form-urlencoded'
{
  "access_token": "<string>",
  "token_type": "<string>",
  "expires_in": 123,
  "refresh_token": "<string>",
  "scope": "<string>",
  "id_token": "<string>"
}

Body

application/x-www-form-urlencoded

Response

200 - application/json

Successful Response

access_token
string
required
token_type
string
required
Allowed value: "Bearer"
expires_in
integer
required
refresh_token
string | null
required
scope
string
required
id_token
string
required