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": "3a49a1d1-0f79-4c93-94dc-350f501d68ce", "fromAccountID": "8ce6cebe-73f2-47d2-8185-0de5582cf379", "toAccountID": "ad926abc-d374-40f4-ab13-1a8b96347e7b", "date": "2025-08-04T22:51:44.5885916+03:00", "currencyAmount": 6.1, "isFactoring": true, "expenseAccountID": "d4c8f7ea-12bc-40a9-9e50-121c6e5917d1", "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>3a49a1d1-0f79-4c93-94dc-350f501d68ce</CheckAndBillId> <CurrencyAmount>6.1</CurrencyAmount> <Date>2025-08-04T22:51:44.5885916+03:00</Date> <ExpenseAccountID>d4c8f7ea-12bc-40a9-9e50-121c6e5917d1</ExpenseAccountID> <ExpenseAmount>8.1</ExpenseAmount> <FromAccountID>8ce6cebe-73f2-47d2-8185-0de5582cf379</FromAccountID> <IsCollection>true</IsCollection> <IsFactoring>true</IsFactoring> <ToAccountID>ad926abc-d374-40f4-ab13-1a8b96347e7b</ToAccountID> </CheckAndBillCollectionPaymentDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
text/html
Sample:
{"isCollection":true,"accountType":7,"checkAndBillId":"3a49a1d1-0f79-4c93-94dc-350f501d68ce","fromAccountID":"8ce6cebe-73f2-47d2-8185-0de5582cf379","toAccountID":"ad926abc-d374-40f4-ab13-1a8b96347e7b","date":"2025-08-04T22:51:44.5885916+03:00","currencyAmount":6.1,"isFactoring":true,"expenseAccountID":"d4c8f7ea-12bc-40a9-9e50-121c6e5917d1","expenseAmount":8.1}
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml, text/html
Sample:
Sample not available.