POST liw/ping

Request Information

URI Parameters

None.

Body Parameters

BO.LottoInstantWin.PingRequest
NameDescriptionTypeAdditional information
partnerName

string

None.

key

string

None.

timeStamp

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "partnerName": "sample string 1",
  "key": "sample string 2",
  "timeStamp": 3
}

application/xml, text/xml

Sample:
<PingRequest 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>
</PingRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

BO.LottoInstantWin.Response
NameDescriptionTypeAdditional 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>