POST api/account/direct-deposit-list

Request Information

URI Parameters

None.

Body Parameters

PaymentMethodRequestModel
NameDescriptionTypeAdditional information
childid

integer

None.

adultid

integer

None.

Isactive

boolean

None.

EncryptGatewayID

string

None.

Request Formats

application/json, text/json

Sample:
{
  "childid": 1,
  "adultid": 2,
  "Isactive": true,
  "EncryptGatewayID": "sample string 4"
}

application/xml, text/xml

Sample:
<PaymentMethodRequestModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/iCareApiModel">
  <EncryptGatewayID>sample string 4</EncryptGatewayID>
  <Isactive>true</Isactive>
  <adultid>2</adultid>
  <childid>1</childid>
</PaymentMethodRequestModel>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'PaymentMethodRequestModel'.

Response Information

Resource Description

Collection of DirectDepositViewModel
NameDescriptionTypeAdditional information
Child_Id

integer

None.

ChildName

string

None.

EndDate

string

None.

Frequency

string

None.

CardInfo

string

None.

ExpDate

string

None.

IsFullBalance

boolean

None.

IsTerminate

boolean

None.

NextPaymentDate

string

None.

StartDate

string

None.

Amount

decimal number

None.

Period_Name

string

None.

PaymentDone

integer

None.

RP_ID

integer

None.

RowID

integer

None.

TFCust_ID

string

None.

Type

string

None.

UserType

string

None.

Total_PendingPayment

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Child_Id": 1,
    "ChildName": "sample string 2",
    "EndDate": "sample string 3",
    "Frequency": "sample string 4",
    "CardInfo": "sample string 5",
    "ExpDate": "sample string 6",
    "IsFullBalance": true,
    "IsTerminate": true,
    "NextPaymentDate": "sample string 9",
    "StartDate": "sample string 10",
    "Amount": 11.0,
    "Period_Name": "sample string 12",
    "PaymentDone": 13,
    "RP_ID": 14,
    "RowID": 15,
    "TFCust_ID": "sample string 16",
    "Type": "sample string 17",
    "UserType": "sample string 18",
    "Total_PendingPayment": 19
  },
  {
    "Child_Id": 1,
    "ChildName": "sample string 2",
    "EndDate": "sample string 3",
    "Frequency": "sample string 4",
    "CardInfo": "sample string 5",
    "ExpDate": "sample string 6",
    "IsFullBalance": true,
    "IsTerminate": true,
    "NextPaymentDate": "sample string 9",
    "StartDate": "sample string 10",
    "Amount": 11.0,
    "Period_Name": "sample string 12",
    "PaymentDone": 13,
    "RP_ID": 14,
    "RowID": 15,
    "TFCust_ID": "sample string 16",
    "Type": "sample string 17",
    "UserType": "sample string 18",
    "Total_PendingPayment": 19
  }
]

application/xml, text/xml

Sample:
<ArrayOfDirectDepositViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/iCareApiModel">
  <DirectDepositViewModel>
    <Amount>11</Amount>
    <CardInfo>sample string 5</CardInfo>
    <ChildName>sample string 2</ChildName>
    <Child_Id>1</Child_Id>
    <EndDate>sample string 3</EndDate>
    <ExpDate>sample string 6</ExpDate>
    <Frequency>sample string 4</Frequency>
    <IsFullBalance>true</IsFullBalance>
    <IsTerminate>true</IsTerminate>
    <NextPaymentDate>sample string 9</NextPaymentDate>
    <PaymentDone>13</PaymentDone>
    <Period_Name>sample string 12</Period_Name>
    <RP_ID>14</RP_ID>
    <RowID>15</RowID>
    <StartDate>sample string 10</StartDate>
    <TFCust_ID>sample string 16</TFCust_ID>
    <Total_PendingPayment>19</Total_PendingPayment>
    <Type>sample string 17</Type>
    <UserType>sample string 18</UserType>
  </DirectDepositViewModel>
  <DirectDepositViewModel>
    <Amount>11</Amount>
    <CardInfo>sample string 5</CardInfo>
    <ChildName>sample string 2</ChildName>
    <Child_Id>1</Child_Id>
    <EndDate>sample string 3</EndDate>
    <ExpDate>sample string 6</ExpDate>
    <Frequency>sample string 4</Frequency>
    <IsFullBalance>true</IsFullBalance>
    <IsTerminate>true</IsTerminate>
    <NextPaymentDate>sample string 9</NextPaymentDate>
    <PaymentDone>13</PaymentDone>
    <Period_Name>sample string 12</Period_Name>
    <RP_ID>14</RP_ID>
    <RowID>15</RowID>
    <StartDate>sample string 10</StartDate>
    <TFCust_ID>sample string 16</TFCust_ID>
    <Total_PendingPayment>19</Total_PendingPayment>
    <Type>sample string 17</Type>
    <UserType>sample string 18</UserType>
  </DirectDepositViewModel>
</ArrayOfDirectDepositViewModel>