token/refresh

Refreshes access token by refresh token.

Authorization

None

Request Topic and Payload

Topic

dh/request

Payload Representation

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

Payload Parameters

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

Response Topic and Payload

Topic

dh/response/authenticate@{clientId}

Payload Representation

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

Payload 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.