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": "2025-11-02T02:12:58.0405251+02:00",
"fullName": "sample string 1",
"amount": 1.0,
"currency": "sample string 2",
"reference": "sample string 3",
"accountId": "d853fbb0-c5ee-4c65-a1d4-b6b8f64c2304"
}
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>d853fbb0-c5ee-4c65-a1d4-b6b8f64c2304</AccountId> <Amount>1</Amount> <Currency>sample string 2</Currency> <FullName>sample string 1</FullName> <Reference>sample string 3</Reference> <ReportDate>2025-11-02T02:12:58.0405251+02: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.