POST api/Account
Request Information
URI Parameters
None.
Body Parameters
UserLogin| Name | Description | Type | Additional 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:
Response Information
Resource Description
ResponseClassOfString| Name | Description | Type | Additional 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": "2025-11-06T21:54:02.683907+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>2025-11-06T21:54:02.683907+03:00</query_date> <status>true</status> </ResponseClassOfstring>