POST api/Account/RefreshToken

Request Information

URI Parameters

None.

Body Parameters

LoginModel
NameDescriptionTypeAdditional information
Username

string

None.

Password

string

None.

AccessToken

string

None.

RefreshToken

string

None.

IsCallFromWeb

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "Username": "sample string 1",
  "Password": "sample string 2",
  "AccessToken": "sample string 3",
  "RefreshToken": "sample string 4",
  "IsCallFromWeb": true
}

text/html, application/octet-stream

Sample:
{"Username":"sample string 1","Password":"sample string 2","AccessToken":"sample string 3","RefreshToken":"sample string 4","IsCallFromWeb":true}

application/xml, text/xml

Sample:
<LoginModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Attendance.Models.BE">
  <AccessToken>sample string 3</AccessToken>
  <IsCallFromWeb>true</IsCallFromWeb>
  <Password>sample string 2</Password>
  <RefreshToken>sample string 4</RefreshToken>
  <Username>sample string 1</Username>
</LoginModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, text/html, application/octet-stream, application/xml, text/xml

Sample:

Sample not available.