GET API/Chatbot/Subscriber/GetTransactionHistory
Request Information
URI Parameters
None.
Body Parameters
Collection of ObjectNone.
Request Formats
application/json, text/json, application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
TransactionHistoryResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Message | string |
None. |
|
| ResponseCode | integer |
None. |
|
| CustomerTransHistorys | Collection of CustomerTransHistory |
None. |
Response Formats
application/json, text/json
Sample:
{
"Message": "sample string 1",
"ResponseCode": 2,
"CustomerTransHistorys": [
{
"SMSID": 1,
"LastRechargeAmount": 2.0,
"LastRechargeDate": "2025-12-15T11:21:16.7871536+05:30"
},
{
"SMSID": 1,
"LastRechargeAmount": 2.0,
"LastRechargeDate": "2025-12-15T11:21:16.7871536+05:30"
}
]
}
application/xml, text/xml
Sample:
<TransactionHistoryResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Phoenix.IN.MVC.ChatbotAPIs.Models">
<CustomerTransHistorys>
<CustomerTransHistory>
<LastRechargeAmount>2</LastRechargeAmount>
<LastRechargeDate>2025-12-15T11:21:16.7871536+05:30</LastRechargeDate>
<SMSID>1</SMSID>
</CustomerTransHistory>
<CustomerTransHistory>
<LastRechargeAmount>2</LastRechargeAmount>
<LastRechargeDate>2025-12-15T11:21:16.7871536+05:30</LastRechargeDate>
<SMSID>1</SMSID>
</CustomerTransHistory>
</CustomerTransHistorys>
<Message>sample string 1</Message>
<ResponseCode>2</ResponseCode>
</TransactionHistoryResponse>