POST api/Customer/RefreshToken
Request Information
URI Parameters
None.
Body Parameters
RefreshTokenRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| Token | string |
None. |
|
| DeviceID | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Token": "sample string 1",
"DeviceID": "sample string 2"
}
application/xml, text/xml
Sample:
<RefreshTokenRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessLayer.Dto.Request"> <DeviceID>sample string 2</DeviceID> <Token>sample string 1</Token> </RefreshTokenRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
RefreshTokenResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Success | boolean |
None. |
|
| Token | string |
None. |
|
| Info | RefreshTokenInfo |
None. |
Response Formats
application/json, text/json
Sample:
{
"Success": true,
"Token": "sample string 2",
"Info": {
"jwtCreatedDate": "2025-10-30T21:00:39.8721576+03:00",
"lastEmailOrPasswordChangeDate": "2025-10-30T21:00:39.8721576+03:00"
}
}
application/xml, text/xml
Sample:
<RefreshTokenResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessLayer.Dto.Response">
<Info>
<jwtCreatedDate>2025-10-30T21:00:39.8721576+03:00</jwtCreatedDate>
<lastEmailOrPasswordChangeDate>2025-10-30T21:00:39.8721576+03:00</lastEmailOrPasswordChangeDate>
</Info>
<Success>true</Success>
<Token>sample string 2</Token>
</RefreshTokenResponse>