POST api/v1/values/getFinanceDebts?type={type}&receivedDate={receivedDate}&receivedLastDate={receivedLastDate}&expiryDate={expiryDate}&expiryLastDate={expiryLastDate}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| type | integer |
Required |
|
| receivedDate | string |
Required |
|
| receivedLastDate | string |
Required |
|
| expiryDate | string |
Required |
|
| expiryLastDate | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of DebtAndChecks| Name | Description | Type | Additional information |
|---|---|---|---|
| receivedDate | date |
None. |
|
| expiryDate | date |
None. |
|
| price | decimal number |
None. |
|
| state | string |
None. |
|
| name | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"receivedDate": "2025-11-03T09:31:25.8030598+03:00",
"expiryDate": "2025-11-03T09:31:25.8030598+03:00",
"price": 3.0,
"state": "sample string 4",
"name": "sample string 5"
},
{
"receivedDate": "2025-11-03T09:31:25.8030598+03:00",
"expiryDate": "2025-11-03T09:31:25.8030598+03:00",
"price": 3.0,
"state": "sample string 4",
"name": "sample string 5"
}
]
application/xml, text/xml
Sample:
<ArrayOfDebtAndChecks xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CFAndroidService.Models">
<DebtAndChecks>
<expiryDate>2025-11-03T09:31:25.8030598+03:00</expiryDate>
<name>sample string 5</name>
<price>3</price>
<receivedDate>2025-11-03T09:31:25.8030598+03:00</receivedDate>
<state>sample string 4</state>
</DebtAndChecks>
<DebtAndChecks>
<expiryDate>2025-11-03T09:31:25.8030598+03:00</expiryDate>
<name>sample string 5</name>
<price>3</price>
<receivedDate>2025-11-03T09:31:25.8030598+03:00</receivedDate>
<state>sample string 4</state>
</DebtAndChecks>
</ArrayOfDebtAndChecks>