POST api/invoice/getallinvoicedetailsforyapily

Get all invoice details needed for Yapily transaction matching on money due in

Request Information

URI Parameters

None.

Body Parameters

Dezrez.Core.DataContracts.Accounts.Invoices.Command.YapilyAllInvoiceFilterDataContract
NameDescriptionTypeAdditional information
FromDate

date

None.

ToDate

date

None.

Request Formats

application/x-www-form-urlencoded

Sample:

Sample not available.

application/json, text/json

Sample:
{
  "FromDate": "2024-05-08T19:24:18.9737531Z",
  "ToDate": "2024-05-08T19:24:18.9737531Z"
}

Response Information

Resource Description

A list of YapilyInvoiceDetailsDataContract

Collection of Dezrez.Core.DataContracts.Accounts.Invoices.Query.YapilyInvoiceDetailsDataContract
NameDescriptionTypeAdditional information
InvoiceId

integer

None.

DueDate

date

None.

Amount

decimal number

None.

References

Collection of Dezrez.Core.DataContracts.External.Api.Finances.BankReferenceDataContract

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "InvoiceId": 1,
    "DueDate": "2024-05-08T19:24:18.9737531Z",
    "Amount": 3.0,
    "References": [
      {
        "Reference": "sample string 1",
        "Id": 2
      },
      {
        "Reference": "sample string 1",
        "Id": 2
      }
    ]
  },
  {
    "InvoiceId": 1,
    "DueDate": "2024-05-08T19:24:18.9737531Z",
    "Amount": 3.0,
    "References": [
      {
        "Reference": "sample string 1",
        "Id": 2
      },
      {
        "Reference": "sample string 1",
        "Id": 2
      }
    ]
  }
]