# Disable automatic generation Disables the automatic generation schedule identified by `scheduleId`, preventing it from generating new reports. Reports generated before the schedule is disabled are not affected. In case of success, the request returns an HTTP 200 response with the `status` field set to `ok`. **DELETE** `/v1/reporting/operations/{reportId}/schedule/{scheduleId}` ## Request parameters ### Path - `reportId` (string, required) Other Operations report type. - `scheduleId` (string, required) Unique identifier (UUID) of the automatic generation schedule to disable. ## Response parameters - `status` (string, optional) Result of the schedule deactivation request. ## Errors | Status | Error | Description | | ------- | ------- | ----------- | | 404 | schedule_not_found | No active schedule was found for the specified `scheduleId`. Check the identifier and `reportId`; if the schedule was already disabled, no further action is required. | ## Request example ### cURL ```bash curl -X DELETE \ 'https://api.mercadopago.com/v1/reporting/operations/{reportId}/schedule/{scheduleId}' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer ' ``` ## Response example ```json { "status": "ok" } ```