RemovePrepared

[POST] .../v1/report/removeprepared

Deletes prepared report by request_uuid. Use this method to remove a prepared report row for a request_uuid when the generated file should no longer be listed as a prepared report. The method deletes the prepared-report record through the current persistent behavior and returns UpdateResult with the affected row count; it does not delete the historical report request row. The request body must contain request_uuid, the caller needs prepared-report remove permission 352 and missing body, missing request_uuid, denied access, missing prepared report, transaction failure or database errors are returned as HTTP 200 ErrorResult business errors.

Request Parameters

Name Type Required Description
request_uuid String Required Report request UUID.

Request Example

{
  "request_uuid": "f20c8f37-8bcb-4f7c-8dc5-8b0b2f4f0c11"
}

Response Parameters

Name Type Description
ok Boolean Indicates whether the request completed successfully.
result Update Update operation result.

Response Example

{
  "ok": true,
  "result": {
    "row_affected": 1
  }
}