POST api/Operation/Deposit

Request Information

URI Parameters

None.

Body Parameters

DepositDataModel
NameDescriptionTypeAdditional 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-06-27T14:39:28.2654071+03:00",
  "fullName": "sample string 1",
  "amount": 1.0,
  "currency": "sample string 2",
  "reference": "sample string 3",
  "accountId": "0cc6833b-ba22-4105-89ec-45216e713f94"
}

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>0cc6833b-ba22-4105-89ec-45216e713f94</AccountId>
  <Amount>1</Amount>
  <Currency>sample string 2</Currency>
  <FullName>sample string 1</FullName>
  <Reference>sample string 3</Reference>
  <ReportDate>2025-06-27T14:39:28.2654071+03:00</ReportDate>
</DepositDataModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ResultViewDepositModel
NameDescriptionTypeAdditional information
Result

string

None.

ErrorLog

Collection of string

None.

Data

Object

None.

Response Formats

application/json, text/json

Sample:

Sample not available.