GET api/gtv/GetDetail?chargeslipno={chargeslipno}&mode={mode}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
chargeslipno

string

Required

mode

string

Required

Body Parameters

None.

Response Information

Resource Description

finalResponse
NameDescriptionTypeAdditional information
responseCode

integer

None.

responseMessage

string

None.

data

finalResponsedata

None.

Response Formats

application/json, text/json

Sample:
{
  "responseCode": 1,
  "responseMessage": "sample string 2",
  "data": {
    "transactionId": "sample string 1",
    "amount": 2.1,
    "paymentMode": "sample string 3",
    "RequestFor": "sample string 4",
    "status": "sample string 5",
    "bankRefId": "sample string 6",
    "bankId": "sample string 7",
    "tid": "sample string 8",
    "mid": "sample string 9",
    "transactionType": "sample string 10",
    "nameOnCard": "sample string 11",
    "transactionDate": "sample string 12",
    "pineRefId": "sample string 13"
  }
}

application/xml, text/xml

Sample:
<finalResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SB_Mobile_OrangePay.Models">
  <data>
    <RequestFor>sample string 4</RequestFor>
    <amount>2.1</amount>
    <bankId>sample string 7</bankId>
    <bankRefId>sample string 6</bankRefId>
    <mid>sample string 9</mid>
    <nameOnCard>sample string 11</nameOnCard>
    <paymentMode>sample string 3</paymentMode>
    <pineRefId>sample string 13</pineRefId>
    <status>sample string 5</status>
    <tid>sample string 8</tid>
    <transactionDate>sample string 12</transactionDate>
    <transactionId>sample string 1</transactionId>
    <transactionType>sample string 10</transactionType>
  </data>
  <responseCode>1</responseCode>
  <responseMessage>sample string 2</responseMessage>
</finalResponse>