PUT api/accounting/exports/batch/{id}/toggleprocess

Record the processed status of a batch payment Processes this accounting export API request. The parameter and response sections describe the data exchanged with the API.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

The unique identifier of the requested resource.

integer

Required

Body Parameters

The process batch payment data contract supplied with the request.

ProcessBatchPaymentDataContract
NameDescriptionTypeAdditional information
Processed

Indicates whether processed is true.

boolean

None.

ProcessedDate

The processed date, expressed as a date and time.

date

None.

Amount

The amount value.

decimal number

None.

Request Formats

application/x-www-form-urlencoded

Sample:

Sample not available.

application/json, text/json

Sample:
{
  "Processed": true,
  "ProcessedDate": "2026-07-22T15:32:53.7352298Z",
  "Amount": 1.0
}

Response Information

Resource Description

The response returned after the operation completes.

IHttpActionResult

None.

Response Formats

application/json, text/json

Sample:

Sample not available.