GET API/Chatbot/Subscriber/GetTransactionHistory

Request Information

URI Parameters

None.

Body Parameters

Collection of Object

None.

Request Formats

application/json, text/json, application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

TransactionHistoryResponse
NameDescriptionTypeAdditional 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": "2024-09-20T03:52:35.6779679+05:30"
    },
    {
      "SMSID": 1,
      "LastRechargeAmount": 2.0,
      "LastRechargeDate": "2024-09-20T03:52:35.6779679+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>2024-09-20T03:52:35.6779679+05:30</LastRechargeDate>
      <SMSID>1</SMSID>
    </CustomerTransHistory>
    <CustomerTransHistory>
      <LastRechargeAmount>2</LastRechargeAmount>
      <LastRechargeDate>2024-09-20T03:52:35.6779679+05:30</LastRechargeDate>
      <SMSID>1</SMSID>
    </CustomerTransHistory>
  </CustomerTransHistorys>
  <Message>sample string 1</Message>
  <ResponseCode>2</ResponseCode>
</TransactionHistoryResponse>