Access Token
DescriptionTakes a refresh token as input and returns a new access token as the output. In the request body, also pass the passcode if MFA is enabled.
Request
URLURL
Request Body
{
"passcode": "...",
"refreshToken": "..."
}
The multi-factor authentication passcode from the registered multi-factor authentication (MFA) device.
The value of the refresh token.
Authentication
Response
Response BodyResponse Body
201 Created
{
"accessToken": "...",
"idToken": "...",
"refreshToken": "...",
"returnUrl": "..."
}
The access token. This is a JWT token that grants access to resources.
The ID Token is a signed JWT token returned from the authorization server and contains the user’s profile information, including the domain of the identity provider. This domain is used to obtain the identity provider URL. This token is used for optimization so the application can know the identity of the user, without having to make any additional network requests. This token can be generated via the Authorization Code flow only.
The value of the Refresh token.
Defines the return URL here.
No error details were provided in the OpenAPI specification.
Code SamplesCode Samples
cURL Command
Vendor Extensions
x-codegen-request-body-name: body