POST api/token/authenticate

Validates a set of user's credentials and returns an authentication token.

Request Information

URI Parameters

None.

Body Parameters

User's credentials.

Credentials
NameDescriptionTypeAdditional information
Username

Username.

string

None.

Password

Password.

string

None.

WsKey

Web services key.

string

None.

Request Formats

application/json, text/json

Sample:
{
  "Username": "sample string 1",
  "Password": "sample string 2",
  "WsKey": "sample string 3"
}

application/xml, text/xml

Sample:
<Credentials xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PuntoNeutro.WebApi.Models">
  <Password>sample string 2</Password>
  <Username>sample string 1</Username>
  <WsKey>sample string 3</WsKey>
</Credentials>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Authentication token.

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.