POST api/Accounts/CreditDebtInstallment
Request Information
URI Parameters
None.
Body Parameters
DebtInstallmentViewModelName | Description | Type | Additional information |
---|---|---|---|
CurrencyAmount | decimal number |
None. |
|
CurrencyRate | decimal number |
None. |
|
CurrencyID | globally unique identifier |
None. |
|
InstallmentCount | integer |
None. |
|
FirstInstallmentDate | date |
None. |
|
DayOfMonth | integer |
None. |
|
Period | CreditPeriods |
None. |
|
ActionType | ActionType |
None. |
|
AccountID | globally unique identifier |
None. |
|
CompanyID | globally unique identifier |
None. |
Request Formats
application/json, text/json
Sample:
{ "currencyAmount": 1.1, "currencyRate": 2.1, "currencyID": "b21b6cbb-5638-4986-bb4c-ca9ad2eb952a", "installmentCount": 4, "firstInstallmentDate": "2025-08-05T21:21:22.1445265+03:00", "dayOfMonth": 6, "period": 1, "actionType": 1, "accountID": "3b4c9551-1ce6-4d9c-bdb2-5f92f5877917", "companyID": "febe2da4-ecd8-41a1-bf36-c868d5f3ac0f" }
application/xml, text/xml
Sample:
<DebtInstallmentViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TP.TulTrack.Core.Service"> <AccountID>3b4c9551-1ce6-4d9c-bdb2-5f92f5877917</AccountID> <ActionType>CashCollection</ActionType> <CompanyID>febe2da4-ecd8-41a1-bf36-c868d5f3ac0f</CompanyID> <CurrencyAmount>1.1</CurrencyAmount> <CurrencyID>b21b6cbb-5638-4986-bb4c-ca9ad2eb952a</CurrencyID> <CurrencyRate>2.1</CurrencyRate> <DayOfMonth>6</DayOfMonth> <FirstInstallmentDate>2025-08-05T21:21:22.1445265+03:00</FirstInstallmentDate> <InstallmentCount>4</InstallmentCount> <Period>EveryMonth</Period> </DebtInstallmentViewModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
text/html
Sample:
{"currencyAmount":1.1,"currencyRate":2.1,"currencyID":"b21b6cbb-5638-4986-bb4c-ca9ad2eb952a","installmentCount":4,"firstInstallmentDate":"2025-08-05T21:21:22.1445265+03:00","dayOfMonth":6,"period":1,"actionType":1,"accountID":"3b4c9551-1ce6-4d9c-bdb2-5f92f5877917","companyID":"febe2da4-ecd8-41a1-bf36-c868d5f3ac0f"}
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml, text/html
Sample:
Sample not available.