POST api/CheckAndBill/CollectionPayment
Request Information
URI Parameters
None.
Body Parameters
CheckAndBillCollectionPaymentDtoName | Description | Type | Additional information |
---|---|---|---|
IsCollection | boolean |
None. |
|
AccountType | AccountType |
None. |
|
CheckAndBillId | globally unique identifier |
None. |
|
FromAccountID | globally unique identifier |
None. |
|
ToAccountID | globally unique identifier |
None. |
|
Date | date |
None. |
|
CurrencyAmount | decimal number |
None. |
|
IsFactoring | boolean |
None. |
|
ExpenseAccountID | globally unique identifier |
None. |
|
ExpenseAmount | decimal number |
None. |
Request Formats
application/json, text/json
Sample:
{ "isCollection": true, "accountType": 7, "checkAndBillId": "19670c6e-400a-4a3e-8672-dc61ee37e9c4", "fromAccountID": "523966bd-a438-4b0f-a503-7f90f3a32011", "toAccountID": "7da8a969-e4bb-4a59-b8af-d2ef5552d7e6", "date": "2025-08-29T12:25:45.9949844+03:00", "currencyAmount": 6.1, "isFactoring": true, "expenseAccountID": "9ffb63e0-ec63-47c2-8596-6bc0e80f36eb", "expenseAmount": 8.1 }
application/xml, text/xml
Sample:
<CheckAndBillCollectionPaymentDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TP.TulTrack.Core.Service.DTOs"> <AccountType>Expense</AccountType> <CheckAndBillId>19670c6e-400a-4a3e-8672-dc61ee37e9c4</CheckAndBillId> <CurrencyAmount>6.1</CurrencyAmount> <Date>2025-08-29T12:25:45.9949844+03:00</Date> <ExpenseAccountID>9ffb63e0-ec63-47c2-8596-6bc0e80f36eb</ExpenseAccountID> <ExpenseAmount>8.1</ExpenseAmount> <FromAccountID>523966bd-a438-4b0f-a503-7f90f3a32011</FromAccountID> <IsCollection>true</IsCollection> <IsFactoring>true</IsFactoring> <ToAccountID>7da8a969-e4bb-4a59-b8af-d2ef5552d7e6</ToAccountID> </CheckAndBillCollectionPaymentDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
text/html
Sample:
{"isCollection":true,"accountType":7,"checkAndBillId":"19670c6e-400a-4a3e-8672-dc61ee37e9c4","fromAccountID":"523966bd-a438-4b0f-a503-7f90f3a32011","toAccountID":"7da8a969-e4bb-4a59-b8af-d2ef5552d7e6","date":"2025-08-29T12:25:45.9949844+03:00","currencyAmount":6.1,"isFactoring":true,"expenseAccountID":"9ffb63e0-ec63-47c2-8596-6bc0e80f36eb","expenseAmount":8.1}
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml, text/html
Sample:
Sample not available.