ChargeService
Click here for a complete list of operations.
GetRechargeList
متد تولید لیست تراکنش های سامانه ( این متد هر ساعت یکبار قابل فراخوانی میباشد و حداکثر تعداد رکورد درخواستی در هر ساعت 800 رکورد میباشد)
پارامتر ورودی | شرح |
Username | نام کاربری وب سرویس |
Password | کلمه عبور |
PageSize | تعداد رکورد درخواستی |
FromDate | از تاریخ |
Price | تا تاریخ |
___________________________________________________
خروجی متد با فرمت جیسون به شرح زیر می باشد
پارامتر خروجی | شرح |
status | کد نتیجه اجرای متد که در جدول زیر تفکیک شده است |
ActionMessage | تشریح متن فارسی نتیجه اجرا متد |
DTime | تاریخ درخواست |
RechargeList | لیست درخواستی در صورتی که درخواست موفق باشد |
___________________________________________________
خروجی | شرح |
0 | عملیات موفق و ایجاد لیست که در جدول زیر توضیح داد |
1 | نام کاربری و کلمه عبور را وارد نمائید |
2 | لطفا مقادیر زمانی را درست وارد نمایید |
3 | خطای سیستمی در فراخوانی اطلاعات روی داده است |
4 | از بازه ی زمانی آخرین گزارش شما هنوز یک ساعت نگذشته است و شما قادر به دریافت گزارش نیستید لطفا دقایقی بعد سعی نمائید |
___________________________________________________
خروجی | شرح |
TrID | شماره تراکنش |
UserInfo | مشخصات کاربر |
Username | نام کاربری |
TelNumber | شماره تلفن |
SrvTitle | نام سرویس |
iDate | تاریخ ارسال |
Amount | مبلغ |
Result | نتیجه تراکنش |
MethodName | نوع متد فروش |
iTime | زمان ارسال |
Test
The test form is only available for requests from the local machine.SOAP 1.1
The following is a sample SOAP 1.1 request and response. The placeholders shown need to be replaced with actual values.
POST /UserWebservice.asmx HTTP/1.1 Host: ws.toshanet.ir Content-Type: text/xml; charset=utf-8 Content-Length: length SOAPAction: "http://www.toranjsoft.com/GetRechargeList" <?xml version="1.0" encoding="utf-8"?> <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Body> <GetRechargeList xmlns="http://www.toranjsoft.com"> <UserName>string</UserName> <Password>string</Password> <PageSize>int</PageSize> <FromDate>string</FromDate> <ToDate>string</ToDate> <methodName>string</methodName> </GetRechargeList> </soap:Body> </soap:Envelope>
HTTP/1.1 200 OK Content-Type: text/xml; charset=utf-8 Content-Length: length <?xml version="1.0" encoding="utf-8"?> <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Body> <GetRechargeListResponse xmlns="http://www.toranjsoft.com"> <GetRechargeListResult>string</GetRechargeListResult> </GetRechargeListResponse> </soap:Body> </soap:Envelope>
SOAP 1.2
The following is a sample SOAP 1.2 request and response. The placeholders shown need to be replaced with actual values.
POST /UserWebservice.asmx HTTP/1.1 Host: ws.toshanet.ir Content-Type: application/soap+xml; charset=utf-8 Content-Length: length <?xml version="1.0" encoding="utf-8"?> <soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope"> <soap12:Body> <GetRechargeList xmlns="http://www.toranjsoft.com"> <UserName>string</UserName> <Password>string</Password> <PageSize>int</PageSize> <FromDate>string</FromDate> <ToDate>string</ToDate> <methodName>string</methodName> </GetRechargeList> </soap12:Body> </soap12:Envelope>
HTTP/1.1 200 OK Content-Type: application/soap+xml; charset=utf-8 Content-Length: length <?xml version="1.0" encoding="utf-8"?> <soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope"> <soap12:Body> <GetRechargeListResponse xmlns="http://www.toranjsoft.com"> <GetRechargeListResult>string</GetRechargeListResult> </GetRechargeListResponse> </soap12:Body> </soap12:Envelope>