POST api/Service/RefreshToken
Request Information
URI Parameters
None.
Body Parameters
RefreshTokenRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| Input | RefreshTokenInputModel |
None. |
Request Formats
application/json, text/json
Sample:
{
"Input": {
"UserNo": 1,
"NotificationToken": "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/BizMate.BizLayer">
<Input>
<NotificationToken>sample string 2</NotificationToken>
<UserNo>1</UserNo>
</Input>
</RefreshTokenRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
RefreshTokenResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| OutPut | RefreshTokenOutPutModel |
None. |
Response Formats
application/json, text/json
Sample:
{
"OutPut": {
"Success": true,
"Message": "sample string 2",
"ObjectID": 3
}
}
application/xml, text/xml
Sample:
<RefreshTokenResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BizMate.BizLayer">
<OutPut>
<Message>sample string 2</Message>
<ObjectID>3</ObjectID>
<Success>true</Success>
</OutPut>
</RefreshTokenResponse>