POST Payments

Request Information

URI Parameters

None.

Body Parameters

InvoicePaymentCreateDto
NameDescriptionTypeAdditional information
PaymentID

Should only be non-zero when updating an existing Invoice Payment

integer

None.

InvoiceNum

integer

None.

PaymentTypeId

integer

None.

PaymentDate

Defaults to today if value passed is null

date

None.

ApplyDate

date

None.

Amount

decimal number

None.

PaymentApplicationDetails

Collection of InvoicePaymentApplicationDto

None.

Request Formats

application/json, text/json

Sample:
{
  • "PaymentID": 1,
  • "InvoiceNum": 2,
  • "PaymentTypeId": 3,
  • "PaymentDate": "2024-05-11T11:01:09.2723688Z",
  • "ApplyDate": "2024-05-11T11:01:09.2723688Z",
  • "Amount": 6.1,
  • "PaymentApplicationDetails": [
      {
      • "InvoiceLineItemID": 1,
      • "AmountToApply": 2.1
      },
      {
      • "InvoiceLineItemID": 1,
      • "AmountToApply": 2.1
      }
    ]
}

Response Information

Resource Description

None.