token/refresh

Refreshes access token by refresh token.

Request Message

Authorization

None

Message Representation

{
    "action": {string},
    "requestId": {object},
    "refreshToken": {string}
}

Message Parameters

Property NameRequiredTypeDescription
actionYesstringAction name: token/refresh
requestIdNoobjectRequest unique identifier, will be passed back in the response message.
refreshTokenYesstringUser JSON Web Refresh Token.

Response Message

Message Representation

{
    "action": {string},
    "status": {string},
    "requestId": {object},
    "accessToken": {string}
}

Message Parameters

Property NameTypeDescription
actionstringAction name: token/refresh
statusstringOperation execution status (success or error).
requestIdobjectRequest unique identifier as specified in the request message.
accessTokenstringJSON Web Token for authorization.