POST api/Operation/Deposit
Request Information
URI Parameters
None.
Body Parameters
DepositDataModel| Name | Description | Type | Additional information |
|---|---|---|---|
| ReportDate | date |
None. |
|
| FullName | string |
None. |
|
| Amount | decimal number |
None. |
|
| Currency | string |
None. |
|
| Reference | string |
None. |
|
| AccountId | globally unique identifier |
None. |
Request Formats
application/json, text/json
Sample:
{
"reportDate": "2026-03-28T17:30:17.6492328+03:00",
"fullName": "sample string 1",
"amount": 1.0,
"currency": "sample string 2",
"reference": "sample string 3",
"accountId": "b44e04b6-a8a0-4156-8567-a75fea62a81b"
}
application/xml, text/xml
Sample:
<DepositDataModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EvenEdgeService.Models"> <AccountId>b44e04b6-a8a0-4156-8567-a75fea62a81b</AccountId> <Amount>1</Amount> <Currency>sample string 2</Currency> <FullName>sample string 1</FullName> <Reference>sample string 3</Reference> <ReportDate>2026-03-28T17:30:17.6492328+03:00</ReportDate> </DepositDataModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ResultViewDepositModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Result | string |
None. |
|
| ErrorLog | Collection of string |
None. |
|
| Data | Object |
None. |
Response Formats
application/json, text/json
Sample:
Sample not available.