Invoices

Invoice Payment Methods

GET /api/.../invoices/{id}/paymenthistory

Return a list of Invoice Payment History.

Request Information

Parameters

Invoice ID

Response Information

Example
application/json, text/json
[
  {
    "InvoiceID" = 1,
    "PaymentHistID" = 2,
    "PayDate" = "2020-04-01T17:11:53.8205252-05:00",
    "UserID" = 1,
    "PayAmt" = 2.3,
    "Type" = 3,
    "CrdtName" = NULL,
    "CrdtNo" = NULL,
    "ChkNo" = NULL,
    "ChkDate" = "2020-04-01T18:11:53.8205252-05:00",
    "VchrNo" = 1234,
    "VchrDate" = "2021-04-01T18:11:53.8205252-05:00",
    "Status" = "Paid",
    "Note" = "payment history 1",
    "UserName" = "payment history user name"
 },
  {
    "InvoiceID" = 2,
    "PaymentHistID" = 3,
    "PayDate" = "2021-04-01T17:11:53.8205252-05:00",
    "UserID" = 1,
    "PayAmt" = 5.6,
    "Type" = 3,
    "CrdtName" = NULL,
    "CrdtNo" = NULL,
    "ChkNo" = NULL,
    "ChkDate" = "2021-04-01T18:11:53.8205252-05:00",
    "VchrNo" = 1234,
    "VchrDate" = "2021-05-01T17:11:53.8205252-05:00",
    "Status" = "Paid",
    "Note" = "payment history 1",
    "UserName" = "payment history user name"
  }
]

HTTP Response Codes

Code Description
200 OK. Success