POST Access/RefreshToken
Extend the expiry time of the token. Please encript your client_secret with SHA256 and then encript value with MD5
Request Information
URI Parameters
None.
Body Parameters
RefreshTokenParamModelName | Description | Type | Additional information |
---|---|---|---|
client_id | string |
Required |
|
client_secret | string |
Required |
|
Token | string |
Required |
Request Formats
application/json, text/json
Sample:
{ "client_id": "sample string 1", "client_secret": "sample string 2", "Token": "sample string 3" }
Response Information
Resource Description
ResultModelOfAccessTokenModelName | Description | Type | Additional information |
---|---|---|---|
StatusCode | string |
None. |
|
StatusMessage | string |
None. |
|
Value | AccessTokenModel |
None. |
Response Formats
application/json, text/json
Sample:
{ "StatusCode": "sample string 1", "StatusMessage": "sample string 2", "Value": { "PoolName": "sample string 1", "AccessToken": "sample string 2", "ExpiredDate": "sample string 3", "IsActive": true } }