POST InvoicesFilter/InvoiceCustomerGet
Request Information
URI Parameters
None.
Body Parameters
InvoiceFilter| Name | Description | Type | Additional information |
|---|---|---|---|
| FromDate | date |
None. |
|
| ToDate | date |
None. |
|
| InvoiceType | integer |
None. |
|
| Tax | integer |
None. |
|
| CompanyId | integer |
None. |
|
| BranchId | integer |
None. |
|
| IsCompanyCenterialized | integer |
None. |
|
| AreaId | integer |
None. |
|
| CityId | integer |
None. |
|
| Area | Collection of Area |
None. |
|
| City | Collection of City |
None. |
|
| IsPaid | boolean |
None. |
|
| CustomerId | integer |
None. |
|
| Page | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"FromDate": "2025-10-29T05:46:47.7298966+03:00",
"ToDate": "2025-10-29T05:46:47.7298966+03:00",
"InvoiceType": 1,
"Tax": 3,
"CompanyId": 4,
"BranchId": 1,
"IsCompanyCenterialized": 5,
"AreaId": 1,
"CityId": 1,
"Area": [
{
"Id": 1,
"CountryId": 2,
"Name": "sample string 3",
"PrimaryName": "sample string 4",
"SeconderyName": "sample string 5"
},
{
"Id": 1,
"CountryId": 2,
"Name": "sample string 3",
"PrimaryName": "sample string 4",
"SeconderyName": "sample string 5"
}
],
"City": [
{
"Id": 1,
"AreaId": 2,
"Name": "sample string 3",
"PrimaryName": "sample string 4",
"SeconderyName": "sample string 5"
},
{
"Id": 1,
"AreaId": 2,
"Name": "sample string 3",
"PrimaryName": "sample string 4",
"SeconderyName": "sample string 5"
}
],
"IsPaid": true,
"CustomerId": 1,
"Page": 6
}
application/xml, text/xml
Sample:
<InvoiceFilter xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/POCO">
<Area>
<Area>
<CountryId>2</CountryId>
<Id>1</Id>
<Name>sample string 3</Name>
<PrimaryName>sample string 4</PrimaryName>
<SeconderyName>sample string 5</SeconderyName>
</Area>
<Area>
<CountryId>2</CountryId>
<Id>1</Id>
<Name>sample string 3</Name>
<PrimaryName>sample string 4</PrimaryName>
<SeconderyName>sample string 5</SeconderyName>
</Area>
</Area>
<AreaId>1</AreaId>
<BranchId>1</BranchId>
<City>
<City>
<AreaId>2</AreaId>
<Id>1</Id>
<Name>sample string 3</Name>
<PrimaryName>sample string 4</PrimaryName>
<SeconderyName>sample string 5</SeconderyName>
</City>
<City>
<AreaId>2</AreaId>
<Id>1</Id>
<Name>sample string 3</Name>
<PrimaryName>sample string 4</PrimaryName>
<SeconderyName>sample string 5</SeconderyName>
</City>
</City>
<CityId>1</CityId>
<CompanyId>4</CompanyId>
<CustomerId>1</CustomerId>
<FromDate>2025-10-29T05:46:47.7298966+03:00</FromDate>
<InvoiceType>1</InvoiceType>
<IsCompanyCenterialized>5</IsCompanyCenterialized>
<IsPaid>true</IsPaid>
<Page>6</Page>
<Tax>3</Tax>
<ToDate>2025-10-29T05:46:47.7298966+03:00</ToDate>
</InvoiceFilter>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Response| Name | Description | Type | Additional information |
|---|---|---|---|
| ErrorCode | integer |
None. |
|
| ErrorMessage | string |
None. |
|
| IsScusses | boolean |
None. |
|
| ResponseDetails | Object |
None. |
Response Formats
application/json, text/json
Sample:
{
"ErrorCode": 1,
"ErrorMessage": "sample string 2",
"IsScusses": true,
"ResponseDetails": {}
}
application/xml, text/xml
Sample:
<Response xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Accounting.API.Models"> <ErrorCode>1</ErrorCode> <ErrorMessage>sample string 2</ErrorMessage> <IsScusses>true</IsScusses> <ResponseDetails /> </Response>