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": "f26fa1b8-5ce6-452b-bfe2-3f752086ec15", "fromAccountID": "90adcce6-51bf-498d-9dc4-21a46a2292a2", "toAccountID": "fc33e9a9-a79e-4cff-96e4-ec0abf19850b", "date": "2025-07-08T21:25:23.4363796+03:00", "currencyAmount": 6.1, "isFactoring": true, "expenseAccountID": "2a599967-d9bc-4434-bf92-a7b29f548149", "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>f26fa1b8-5ce6-452b-bfe2-3f752086ec15</CheckAndBillId> <CurrencyAmount>6.1</CurrencyAmount> <Date>2025-07-08T21:25:23.4363796+03:00</Date> <ExpenseAccountID>2a599967-d9bc-4434-bf92-a7b29f548149</ExpenseAccountID> <ExpenseAmount>8.1</ExpenseAmount> <FromAccountID>90adcce6-51bf-498d-9dc4-21a46a2292a2</FromAccountID> <IsCollection>true</IsCollection> <IsFactoring>true</IsFactoring> <ToAccountID>fc33e9a9-a79e-4cff-96e4-ec0abf19850b</ToAccountID> </CheckAndBillCollectionPaymentDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
text/html
Sample:
{"isCollection":true,"accountType":7,"checkAndBillId":"f26fa1b8-5ce6-452b-bfe2-3f752086ec15","fromAccountID":"90adcce6-51bf-498d-9dc4-21a46a2292a2","toAccountID":"fc33e9a9-a79e-4cff-96e4-ec0abf19850b","date":"2025-07-08T21:25:23.4363796+03:00","currencyAmount":6.1,"isFactoring":true,"expenseAccountID":"2a599967-d9bc-4434-bf92-a7b29f548149","expenseAmount":8.1}
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml, text/html
Sample:
Sample not available.