GET api/Plans/RechargeInfoDTH?Username={Username}&CurrentPassword={CurrentPassword}&dthNumber={dthNumber}&operatorId={operatorId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
Username

string

Required

CurrentPassword

string

Required

dthNumber

string

Required

operatorId

integer

Required

Body Parameters

None.

Response Information

Resource Description

DTHInfo
NameDescriptionTypeAdditional information
tel

string

None.

operator

string

None.

records

Collection of Record

None.

status

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "tel": "sample string 1",
  "operator": "sample string 2",
  "records": [
    {
      "MonthlyRecharge": "sample string 1",
      "Balance": {},
      "customerName": "sample string 3",
      "status": "sample string 4",
      "NextRechargeDate": {},
      "lastrechargeamount": "sample string 6",
      "lastrechargedate": "2026-03-15T15:36:49.6389915+05:30",
      "planname": "sample string 8"
    },
    {
      "MonthlyRecharge": "sample string 1",
      "Balance": {},
      "customerName": "sample string 3",
      "status": "sample string 4",
      "NextRechargeDate": {},
      "lastrechargeamount": "sample string 6",
      "lastrechargedate": "2026-03-15T15:36:49.6389915+05:30",
      "planname": "sample string 8"
    }
  ],
  "status": 3
}

application/xml, text/xml

Sample:
<DTHInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/aathifrupay.Models.DTHInfo">
  <operator>sample string 2</operator>
  <records>
    <Record>
      <Balance />
      <MonthlyRecharge>sample string 1</MonthlyRecharge>
      <NextRechargeDate />
      <customerName>sample string 3</customerName>
      <lastrechargeamount>sample string 6</lastrechargeamount>
      <lastrechargedate>2026-03-15T15:36:49.6389915+05:30</lastrechargedate>
      <planname>sample string 8</planname>
      <status>sample string 4</status>
    </Record>
    <Record>
      <Balance />
      <MonthlyRecharge>sample string 1</MonthlyRecharge>
      <NextRechargeDate />
      <customerName>sample string 3</customerName>
      <lastrechargeamount>sample string 6</lastrechargeamount>
      <lastrechargedate>2026-03-15T15:36:49.6389915+05:30</lastrechargedate>
      <planname>sample string 8</planname>
      <status>sample string 4</status>
    </Record>
  </records>
  <status>3</status>
  <tel>sample string 1</tel>
</DTHInfo>