POST api/UserInfo
دریافت اطلاعات کاربر https://mehrafraz.com/fullrest/api/UserInfo
Request Information
URI Parameters
None.
Body Parameters
UserInfoModel| Name | Description | Type | Additional information |
|---|---|---|---|
| UserName |
نام کاربری |
string |
None. |
| Password |
پسورد ورود به سامانه |
string |
None. |
| DomainName |
نام دامنه |
string |
None. |
Request Formats
application/json, text/json
Sample:
{
"UserName": "sample string 1",
"Password": "sample string 2",
"DomainName": "sample string 3"
}
application/xml, text/xml
Sample:
<UserInfoModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RESTfulApi.Models"> <DomainName>sample string 3</DomainName> <Password>sample string 2</Password> <UserName>sample string 1</UserName> </UserInfoModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
UserInfo| Name | Description | Type | Additional information |
|---|---|---|---|
| Result |
آرایه ای از اطلاعات کاربری |
Collection of string |
None. |
| SendrNumber |
شماره ارسالی کاربر |
string |
None. |
| Charge |
شارژ |
string |
None. |
| NumberOfSms |
تعداد پیامک های ارسال شده |
string |
None. |
| LastTimeLogin |
آخرین زمان ورود به نرم افزار |
string |
None. |
| FarsiPrice |
مبلغ پیامک فارسی |
string |
None. |
| EnglishPrice |
مبلغ پیامک انگلیسی |
string |
None. |
| Messege |
متن خطایی که رخ داده |
string |
None. |
| Status |
کد خطا. در صورتی که صفر باشد یعنی خطایی رخ نداده |
integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"Result": [
"sample string 1",
"sample string 2"
],
"SendrNumber": "sample string 1",
"Charge": "sample string 2",
"NumberOfSms": "sample string 3",
"LastTimeLogin": "sample string 4",
"FarsiPrice": "sample string 5",
"EnglishPrice": "sample string 6",
"Messege": "sample string 7",
"Status": 8
}
application/xml, text/xml
Sample:
<ResponseUserInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RESTfulApi.Models">
<Messege>sample string 7</Messege>
<Status>8</Status>
<Charge>sample string 2</Charge>
<EnglishPrice>sample string 6</EnglishPrice>
<FarsiPrice>sample string 5</FarsiPrice>
<LastTimeLogin>sample string 4</LastTimeLogin>
<NumberOfSms>sample string 3</NumberOfSms>
<Result xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:string>sample string 1</d2p1:string>
<d2p1:string>sample string 2</d2p1:string>
</Result>
<SendrNumber>sample string 1</SendrNumber>
</ResponseUserInfo>