POST api/invoice/getallinvoicedetailsforyapily
Get all invoice details needed for Yapily transaction matching on money due in
Request Information
URI Parameters
None.
Body Parameters
YapilyAllInvoiceFilterDataContract| Name | Description | Type | Additional information |
|---|---|---|---|
| FromDate | date |
None. |
|
| ToDate | date |
None. |
Request Formats
application/x-www-form-urlencoded
Sample:
Sample not available.
application/json, text/json
Sample:
{
"FromDate": "2025-11-18T14:10:06.2297045Z",
"ToDate": "2025-11-18T14:10:06.2297045Z"
}
Response Information
Resource Description
A list of YapilyInvoiceDetailsDataContract
Collection of YapilyInvoiceDetailsDataContract| Name | Description | Type | Additional information |
|---|---|---|---|
| InvoiceId | integer |
None. |
|
| DueDate | date |
None. |
|
| Amount | decimal number |
None. |
|
| PeriodicLength | string |
None. |
|
| References | Collection of BankReferenceDataContract |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"InvoiceId": 1,
"DueDate": "2025-11-18T14:10:06.2297045Z",
"Amount": 3.0,
"PeriodicLength": "sample string 4",
"References": [
{
"Reference": "sample string 1",
"Id": 2
},
{
"Reference": "sample string 1",
"Id": 2
}
]
},
{
"InvoiceId": 1,
"DueDate": "2025-11-18T14:10:06.2297045Z",
"Amount": 3.0,
"PeriodicLength": "sample string 4",
"References": [
{
"Reference": "sample string 1",
"Id": 2
},
{
"Reference": "sample string 1",
"Id": 2
}
]
}
]