Generate Access Token

Generate Access Token

Note: This method works only for UAA refresh tokens. Access tokens expire in 1 hour.

Request
URI
POST
https://network.tanzu.vmware.com/api/v2/authentication/access_tokens
COPY
Request Body
{
    "refresh_token": "xyz"
}
Responses
200

if successful

Returns GenerateAccessTokenResponse of type(s) application/json
{
    "access_token": "string"
}
string
access_token
Optional

Access Token


400

if there is a missing required field in the request payload

Operation doesn't return any data structure

401

if UAA rejects the refresh token

Operation doesn't return any data structure

500

if UAA is unavailable

Operation doesn't return any data structure