POST api/ManualPaymentBatch?CallType={CallType}&Filename={Filename}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
CallType

string

Required

Filename

string

Required

Body Parameters

Collection of LockboxPayment
NameDescriptionTypeAdditional information
LineId

integer

None.

ExistingPaymentId

integer

None.

UtilityId

integer

None.

AccountNum

integer

None.

PaymentDate

date

None.

Amount

decimal number

None.

CheckNumber

string

None.

PaymentMethod

string

None.

Source

string

None.

Result

string

None.

Request Formats

application/json, text/json

Sample:
[
  {
    "LineId": 1,
    "ExistingPaymentId": 2,
    "UtilityId": 3,
    "AccountNum": 4,
    "PaymentDate": "2024-04-04T11:41:17.5565198+00:00",
    "Amount": 6.0,
    "CheckNumber": "sample string 7",
    "PaymentMethod": "sample string 8",
    "Source": "sample string 9",
    "Result": "sample string 10"
  },
  {
    "LineId": 1,
    "ExistingPaymentId": 2,
    "UtilityId": 3,
    "AccountNum": 4,
    "PaymentDate": "2024-04-04T11:41:17.5565198+00:00",
    "Amount": 6.0,
    "CheckNumber": "sample string 7",
    "PaymentMethod": "sample string 8",
    "Source": "sample string 9",
    "Result": "sample string 10"
  }
]

application/xml, text/xml

Sample:
<ArrayOfLockboxPayment xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/APL.Models">
  <LockboxPayment>
    <AccountNum>4</AccountNum>
    <Amount>6</Amount>
    <CheckNumber>sample string 7</CheckNumber>
    <ExistingPaymentId>2</ExistingPaymentId>
    <LineId>1</LineId>
    <PaymentDate>2024-04-04T11:41:17.5565198+00:00</PaymentDate>
    <PaymentMethod>sample string 8</PaymentMethod>
    <Result>sample string 10</Result>
    <Source>sample string 9</Source>
    <UtilityId>3</UtilityId>
  </LockboxPayment>
  <LockboxPayment>
    <AccountNum>4</AccountNum>
    <Amount>6</Amount>
    <CheckNumber>sample string 7</CheckNumber>
    <ExistingPaymentId>2</ExistingPaymentId>
    <LineId>1</LineId>
    <PaymentDate>2024-04-04T11:41:17.5565198+00:00</PaymentDate>
    <PaymentMethod>sample string 8</PaymentMethod>
    <Result>sample string 10</Result>
    <Source>sample string 9</Source>
    <UtilityId>3</UtilityId>
  </LockboxPayment>
</ArrayOfLockboxPayment>

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 'List`1'.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.