POST api/Operation/Deposit
Request Information
URI Parameters
None.
Body Parameters
DepositDataModelName | 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-09-16T21:42:35.2082196+03:00", "fullName": "sample string 1", "amount": 1.0, "currency": "sample string 2", "reference": "sample string 3", "accountId": "15034c21-748b-48c9-8ba1-6bb944403bec" }
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>15034c21-748b-48c9-8ba1-6bb944403bec</AccountId> <Amount>1</Amount> <Currency>sample string 2</Currency> <FullName>sample string 1</FullName> <Reference>sample string 3</Reference> <ReportDate>2025-09-16T21:42:35.2082196+03:00</ReportDate> </DepositDataModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ResultViewDepositModelName | 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.