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": "75036576-3ee9-4d7e-9fec-1424675c8cc2", "fromAccountID": "701a993e-9f42-417f-913f-4595e444f99d", "toAccountID": "c584ed9e-8067-4343-abe4-c40faf68b534", "date": "2025-08-05T21:27:07.8898408+03:00", "currencyAmount": 6.1, "isFactoring": true, "expenseAccountID": "7cf0d84f-7ff5-4336-bddf-1c47a05a10d1", "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>75036576-3ee9-4d7e-9fec-1424675c8cc2</CheckAndBillId> <CurrencyAmount>6.1</CurrencyAmount> <Date>2025-08-05T21:27:07.8898408+03:00</Date> <ExpenseAccountID>7cf0d84f-7ff5-4336-bddf-1c47a05a10d1</ExpenseAccountID> <ExpenseAmount>8.1</ExpenseAmount> <FromAccountID>701a993e-9f42-417f-913f-4595e444f99d</FromAccountID> <IsCollection>true</IsCollection> <IsFactoring>true</IsFactoring> <ToAccountID>c584ed9e-8067-4343-abe4-c40faf68b534</ToAccountID> </CheckAndBillCollectionPaymentDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
text/html
Sample:
{"isCollection":true,"accountType":7,"checkAndBillId":"75036576-3ee9-4d7e-9fec-1424675c8cc2","fromAccountID":"701a993e-9f42-417f-913f-4595e444f99d","toAccountID":"c584ed9e-8067-4343-abe4-c40faf68b534","date":"2025-08-05T21:27:07.8898408+03:00","currencyAmount":6.1,"isFactoring":true,"expenseAccountID":"7cf0d84f-7ff5-4336-bddf-1c47a05a10d1","expenseAmount":8.1}
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml, text/html
Sample:
Sample not available.