POST api/receipt/agentdeposit

Add agent funds into the system Processes this receipt API request. The parameter and response sections describe the data exchanged with the API.

Request Information

URI Parameters

None.

Body Parameters

The set agent deposit data contract supplied with the request.

SetAgentDepositDataContract
NameDescriptionTypeAdditional information
Amount

The amount value.

decimal number

None.

BankAccountId

The unique identifier of the related bank account resource.

integer

None.

Date

The date, expressed as a date and time.

date

None.

Request Formats

application/x-www-form-urlencoded

Sample:

Sample not available.

application/json, text/json

Sample:
{
  "Amount": 1.0,
  "BankAccountId": 2,
  "Date": "2026-07-23T10:35:55.0452388Z"
}

Response Information

Resource Description

The response returned after the operation completes.

IHttpActionResult

None.

Response Formats

application/json, text/json

Sample:

Sample not available.