POST api/Jwt

Request Information

URI Parameters

None.

Body Parameters

User
NameDescriptionTypeAdditional information
id

integer

None.

username

string

None.

password

string

None.

firstName

string

None.

lastName

string

None.

token

string

None.

Request Formats

application/json, text/json

Sample:
{
  "id": 1,
  "username": "sample string 2",
  "password": "sample string 3",
  "firstName": "sample string 4",
  "lastName": "sample string 5",
  "token": "sample string 6"
}

application/xml, text/xml

Sample:
<User xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <id>1</id>
  <username>sample string 2</username>
  <password>sample string 3</password>
  <firstName>sample string 4</firstName>
  <lastName>sample string 5</lastName>
  <token>sample string 6</token>
</User>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json

Sample:

Sample not available.