token
Creates access and refresh tokens by login and password.
Request Message
Authorization
None
Message Representation
{
"action": {string},
"requestId": {object},
"login": {string},
"password": {string}
}
Message Parameters
Property Name | Required | Type | Description |
---|---|---|---|
action | Yes | string | Action name: token |
requestId | No | object | Request unique identifier, will be passed back in the response message. |
login | Yes | string | User login. |
password | Yes | string | User password. |
Response Message
Message Representation
{
"action": {string},
"status": {string},
"requestId": {object},
"accessToken": {string},
"refreshToken": {string}
}
Message Parameters
Property Name | Type | Description |
---|---|---|
action | string | Action name: token |
status | string | Operation execution status (success or error). |
requestId | object | Request unique identifier as specified in the request message. |
accessToken | string | JSON Web Token for authorization. |
refreshToken | string | JSON Web Token for refreshing access token. |
Updated less than a minute ago