POST api/Account

Request Information

URI Parameters

None.

Body Parameters

UserLogin
NameDescriptionTypeAdditional information
Username

string

None.

Password

string

None.

AppID

string

None.

IpAddress

string

None.

Request Formats

application/json, text/json

Sample:
{
  "Username": "sample string 1",
  "Password": "sample string 2",
  "AppID": "sample string 3",
  "IpAddress": "sample string 4"
}

application/xml, text/xml

Sample:
<UserLogin xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/">
  <AppID>sample string 3</AppID>
  <IpAddress>sample string 4</IpAddress>
  <Password>sample string 2</Password>
  <Username>sample string 1</Username>
</UserLogin>

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 'UserLogin'.

Response Information

Resource Description

ResponseClassOfString
NameDescriptionTypeAdditional information
status

boolean

None.

query_date

date

None.

description

string

None.

data

string

None.

Response Formats

application/json, text/json

Sample:
{
  "status": true,
  "query_date": "2024-12-24T04:54:27.4470571+03:00",
  "description": "sample string 3",
  "data": "sample string 4"
}

application/xml, text/xml

Sample:
<ResponseClassOfstring xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/">
  <data>sample string 4</data>
  <description>sample string 3</description>
  <query_date>2024-12-24T04:54:27.4470571+03:00</query_date>
  <status>true</status>
</ResponseClassOfstring>