POST liw/CancelTransaction
Request Information
URI Parameters
None.
Body Parameters
BO.LottoInstantWin.CancelTransaction| Name | Description | Type | Additional information |
|---|---|---|---|
| partnerName | string |
None. |
|
| key | string |
None. |
|
| timeStamp | integer |
None. |
|
| cancelRequest | Collection of BO.LottoInstantWin.CancelRequest |
None. |
Request Formats
application/json, text/json
Sample:
{
"partnerName": "sample string 1",
"key": "sample string 2",
"timeStamp": 3,
"cancelRequest": [
{
"paymentID": 1,
"transactionID": 2,
"userID": 3,
"info": "sample string 4"
},
{
"paymentID": 1,
"transactionID": 2,
"userID": 3,
"info": "sample string 4"
}
]
}
application/xml, text/xml
Sample:
<CancelTransaction xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<partnerName>sample string 1</partnerName>
<key>sample string 2</key>
<timeStamp>3</timeStamp>
<cancelRequest>
<CancelRequest>
<PaymentID>1</PaymentID>
<TransactionID>2</TransactionID>
<UserID>3</UserID>
<Info>sample string 4</Info>
</CancelRequest>
<CancelRequest>
<PaymentID>1</PaymentID>
<TransactionID>2</TransactionID>
<UserID>3</UserID>
<Info>sample string 4</Info>
</CancelRequest>
</cancelRequest>
</CancelTransaction>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
BO.LottoInstantWin.Response| Name | Description | Type | Additional information |
|---|---|---|---|
| responseState | BO.LottoInstantWin.ResponseState |
None. |
|
| Key | string |
None. |
|
| timeStamp | integer |
None. |
|
| PaymentResponse | Collection of BO.LottoInstantWin.PaymentResponse |
None. |
Response Formats
application/json, text/json
Sample:
{
"responseState": 1,
"key": "sample string 1",
"timeStamp": 2,
"paymentResponse": [
{
"transactionID": 1,
"responseState": 1
},
{
"transactionID": 1,
"responseState": 1
}
]
}
application/xml, text/xml
Sample:
<Response xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<responseState>OK</responseState>
<Key>sample string 1</Key>
<timeStamp>2</timeStamp>
<PaymentResponse>
<PaymentResponse>
<TransactionID>1</TransactionID>
<responseState>1</responseState>
</PaymentResponse>
<PaymentResponse>
<TransactionID>1</TransactionID>
<responseState>1</responseState>
</PaymentResponse>
</PaymentResponse>
</Response>