POST api/Order/TestCreditCardCheckout
Request Information
URI Parameters
None.
Body Parameters
CheckoutResultName | Description | Type | Additional information |
---|---|---|---|
status | integer |
None. |
|
errcode | string |
None. |
|
errDesc | string |
None. |
|
merID | string |
None. |
|
authCode | string |
None. |
|
authAmt | integer |
None. |
|
lidm | string |
None. |
|
xid | string |
None. |
|
cardBrand | string |
None. |
|
pan | string |
None. |
|
authRespTime | string |
None. |
|
PayType | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{ "status": 1, "errcode": "sample string 2", "errDesc": "sample string 3", "merID": "sample string 4", "authCode": "sample string 5", "authAmt": 6, "lidm": "sample string 7", "xid": "sample string 8", "cardBrand": "sample string 9", "pan": "sample string 10", "authRespTime": "sample string 11", "payType": true }
application/xml, text/xml
Sample:
<OrderController.CheckoutResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BankproProduct.Controllers"> <PayType>true</PayType> <authAmt>6</authAmt> <authCode>sample string 5</authCode> <authRespTime>sample string 11</authRespTime> <cardBrand>sample string 9</cardBrand> <errDesc>sample string 3</errDesc> <errcode>sample string 2</errcode> <lidm>sample string 7</lidm> <merID>sample string 4</merID> <pan>sample string 10</pan> <status>1</status> <xid>sample string 8</xid> </OrderController.CheckoutResult>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.