POST
/
oauth2
/
tokens
curl --request POST \
  --url https://cloud.local.wirtual.dev/api/v2/oauth2/tokens \
  --header 'Content-Type: multipart/form-data' \
  --form 'client_id=<string>' \
  --form 'client_secret=<string>' \
  --form 'code=<string>' \
  --form 'refresh_token=<string>' \
  --form grant_type=authorization_code
{
  "access_token": "<string>",
  "expires_in": 123,
  "expiry": "<string>",
  "refresh_token": "<string>",
  "token_type": "<string>"
}

Body

multipart/form-data
grant_type
enum<string>
required

Grant type

Available options:
authorization_code,
refresh_token
client_id
string

Client ID, required if grant_type=authorization_code

client_secret
string

Client secret, required if grant_type=authorization_code

code
string

Authorization code, required if grant_type=authorization_code

refresh_token
string

Refresh token, required if grant_type=refresh_token

Response

200 - application/json
OK
access_token
string

AccessToken is the token that authorizes and authenticates the requests.

expires_in
integer

ExpiresIn is the OAuth2 wire format "expires_in" field, which specifies how many seconds later the token expires, relative to an unknown time base approximately around "now". It is the application's responsibility to populate Expiry from ExpiresIn when required.

expiry
string

Expiry is the optional expiration time of the access token.

If zero, TokenSource implementations will reuse the same token forever and RefreshToken or equivalent mechanisms for that TokenSource will not be used.

refresh_token
string

RefreshToken is a token that's used by the application (as opposed to the user) to refresh the access token if it expires.

token_type
string

TokenType is the type of token. The Type method returns either this or "Bearer", the default.