GET api/WOInvoice/GetInvoicePaymentLog?InvoiceID={InvoiceID}&APIKey={APIKey}

API to get Invoice Payment Log

Request Information

URI Parameters

NameDescriptionTypeAdditional information
InvoiceID

integer

Required

APIKey

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of WOInvoicePaymentLogDataModel
NameDescriptionTypeAdditional information
Name

string

None.

Email

string

None.

PaymentAmount

decimal number

None.

IsSuccess

integer

None.

PaymentMode

string

None.

AddedDate

date

None.

AddedByName

string

None.

Response Formats

application/json, text/json, text/plain, text/html

Sample:
[
  {
    "name": "sample string 1",
    "email": "sample string 2",
    "paymentAmount": 3.0,
    "isSuccess": 4,
    "paymentMode": "sample string 5",
    "addedDate": "2025-07-17T03:55:27.5864189+00:00",
    "addedByName": "sample string 7"
  },
  {
    "name": "sample string 1",
    "email": "sample string 2",
    "paymentAmount": 3.0,
    "isSuccess": 4,
    "paymentMode": "sample string 5",
    "addedDate": "2025-07-17T03:55:27.5864189+00:00",
    "addedByName": "sample string 7"
  }
]

application/xml, text/xml

Sample:
<ArrayOfWOInvoicePaymentLogDataModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ATMP.Core.DataModel">
  <WOInvoicePaymentLogDataModel>
    <AddedByName>sample string 7</AddedByName>
    <AddedDate>2025-07-17T03:55:27.5864189+00:00</AddedDate>
    <Email>sample string 2</Email>
    <IsSuccess>4</IsSuccess>
    <Name>sample string 1</Name>
    <PaymentAmount>3</PaymentAmount>
    <PaymentMode>sample string 5</PaymentMode>
  </WOInvoicePaymentLogDataModel>
  <WOInvoicePaymentLogDataModel>
    <AddedByName>sample string 7</AddedByName>
    <AddedDate>2025-07-17T03:55:27.5864189+00:00</AddedDate>
    <Email>sample string 2</Email>
    <IsSuccess>4</IsSuccess>
    <Name>sample string 1</Name>
    <PaymentAmount>3</PaymentAmount>
    <PaymentMode>sample string 5</PaymentMode>
  </WOInvoicePaymentLogDataModel>
</ArrayOfWOInvoicePaymentLogDataModel>

multipart/form-data

Sample:
<ArrayOfWOInvoicePaymentLogDataModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ATMP.Core.DataModel"><WOInvoicePaymentLogDataModel><AddedByName>sample string 7</AddedByName><AddedDate>2025-07-17T03:55:27.5864189+00:00</AddedDate><Email>sample string 2</Email><IsSuccess>4</IsSuccess><Name>sample string 1</Name><PaymentAmount>3</PaymentAmount><PaymentMode>sample string 5</PaymentMode></WOInvoicePaymentLogDataModel><WOInvoicePaymentLogDataModel><AddedByName>sample string 7</AddedByName><AddedDate>2025-07-17T03:55:27.5864189+00:00</AddedDate><Email>sample string 2</Email><IsSuccess>4</IsSuccess><Name>sample string 1</Name><PaymentAmount>3</PaymentAmount><PaymentMode>sample string 5</PaymentMode></WOInvoicePaymentLogDataModel></ArrayOfWOInvoicePaymentLogDataModel>