Page History
...
Parameter | Mandatory field | Adopted values | Default value | Description |
merchant_Id | Yes | Number | The enterprise identifier in IPS Assist | |
login | Yes | 8 - 20 characters | Login (Latin letters, digits and symbol _) | |
password | Yes | 8 - 20 characters | Password (Latin letters and digits) | |
testMode | Yes | 0 1 | 0 | Mode (0 – operation mode, |
language | No | RU EN | EN | Language of the results output |
format | No | 1 – CSV | 1 | Format of the results output. Passed only for a request in POST format (by default, the response will be returned in CSV format). For other formats, the response is returned in the same format in which the request was made. |
meanType_Id | No | 1 – VISA | All values sampling by default | Sampling by types of payment means |
operationState | No | N – created, | All values sampling by default | Sampling by operation states. Use upper case only. |
operationType | No | A – payment; | All values sampling by default | Sampling by operation types. Use upper case only. |
startDay | No | dd | By default: minus three hours from the current time at the moment of sampling | Sampling start date (GMT) |
startMonth | No | mm | ||
startYear | No | yyyy | ||
startHour | No | hh | ||
startMin | No | mm | ||
endDay | No | dd | By default: current time at the moment of sampling | Sampling end date (GMT) |
endMonth | No | mm | ||
endYear | No | yyyy | ||
EndHourendHour | No | hh | ||
EndMinendMin | No | mm | ||
DateTimeModedateTimeMode | No | 0 – by order date; | 0 | Date type - target date for data sampling |
ZipFlagzipFlag | No | "0" – browser | 0 | Format of the results output |
| Note |
|---|
All request parameters are automatically validated. The validation rules are given in the table "table The validation rules for input parameters". |
Based on the values of the request parameters the replay information is selected and formatted.
...
| Code Block | ||
|---|---|---|
| ||
<FORM ACTION="https://<SERVER-NAME>/resultbydate/resultbydate.cfm" method="POST"> <INPUT TYPE="hidden" NAME="Merchantmerchant_IDId" VALUE="Your Merchant_ID"> <INPUT TYPE="hidden" NAME="Loginlogin" VALUE="Your login"> <INPUT TYPE="hidden" NAME="Passwordpassword" VALUE="Your password"> <INPUT TYPE="hidden" NAME="TestMode" VALUE="1"> <INPUT TYPE="hidden" NAME="Language" VALUE="EN"> <INPUT TYPE="hidden" NAME="MeanType_ID" VALUE="1"> <INPUT TYPE="hidden" NAME="Operationstate" VALUE="S"> <INPUT TYPE="hidden" NAME="Operation type" VALUE="A"> <INPUT TYPE="hidden" NAME="StartDay" VALUE="06"> <INPUT TYPE="hidden" NAME="StartMonth" VALUE="07"> <INPUT TYPE="hidden" NAME="StartYear" VALUE="2016"> <INPUT TYPE="hidden" NAME="StartHour" VALUE="07"> <INPUT TYPE="hidden" NAME="StartMin" VALUE="00"> <INPUT TYPE="hidden" NAME="EndDay" VALUE="06"> <INPUT TYPE="hidden" NAME="EndMonth" VALUE="07"> <INPUT TYPE="hidden" NAME="EndYear" VALUE="2016"> <INPUT TYPE="hidden" NAME="EndHour" VALUE="11"> <INPUT TYPE="hidden" NAME="EndMin" VALUE="00"> <INPUT TYPE="hidden" NAME="Format" VALUE="3"> <INPUT TYPE="Submit"></FORM> |
...