POST Login

Request Information

URI Parameters

None.

Body Parameters

LoginRequest
NameDescriptionTypeAdditional information
Username

string

None.

Password

string

None.

Request Formats

application/json, text/json

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

application/xml, text/xml

Sample:
<LoginRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Veripro.API.Models">
  <Password>sample string 2</Password>
  <Username>sample string 1</Username>
</LoginRequest>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'LoginRequest'.

Response Information

Resource Description

ContentResponse
NameDescriptionTypeAdditional information
ResponseObject

Object

None.

ResponseMessage

string

None.

Code

ResultCodes

None.

APITransactionID

string

None.

Result

string

None.

Response Formats

application/json, text/json

Sample:
{
  "ResponseObject": {},
  "ResponseMessage": "sample string 2",
  "Code": 200,
  "APITransactionID": "sample string 3",
  "Result": "OK"
}

application/xml, text/xml

Sample:
<ContentResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Veripro.API.Base">
  <APITransactionID>sample string 3</APITransactionID>
  <Code>OK</Code>
  <ResponseMessage>sample string 2</ResponseMessage>
  <ResponseObject />
</ContentResponse>