# Get Other Operations report generation task Returns the status and details of a specific Other Operations report generation task, identified by `uid`. Use this endpoint to track the task while its status is `pending` and until it changes to `available`, `failed`, or `empty`. In case of success, the request returns an HTTP 200 response. **GET** `/v1/reporting/operations/{reportId}/statements/{uid}` ## Request parameters ### Path - `reportId` (string, required) Other Operations report type. - `uid` (string, required) Unique identifier (UUID) of the generation task, returned as `record_id` when the report is created. ## Response parameters - `id` (string, optional) Unique identifier (UUID) of the report generation task. This value matches the `uid` sent in the request. - `status` (string, optional) Current report generation status. The possible values are: Possible enum values: - `pending` The generation task is awaiting processing. - `available` The generation task completed successfully and the report is available for download. - `failed` The generation task could not create the report due to an error. - `empty` The generation task completed, but no operations matched the requested period and filters. - `date_start` (string, optional) Start date and time of the period covered by the report, in ISO 8601 format. - `date_end` (string, optional) End date and time of the period covered by the report, in ISO 8601 format. - `date_created` (string, optional) Date and time when the report generation task was created, in ISO 8601 format. - `created_by` (string, optional) Indicates how the report generation was requested. The possible values are: Possible enum values: - `manual` Report generation requested manually through the API or the Mercado Pago panel. - `scheduled` Report generation requested by an automatic schedule. - `aggregator` Report generation requested by an internal Mercado Pago process. - `structure` (object, optional) Configuration structure used to generate the report. - `structure.id` (string, optional) Unique identifier (UUID) of the configuration structure used to generate the report. - `files` (array, optional) List of files generated for the report and available for download when its status is `available`. - `files[].type` (string, optional) MIME type that identifies the file format. - `files[].name` (string, optional) Name of the generated file, including its extension. - `files[].has_zip_version` (boolean, optional) Indicates whether a compressed ZIP version of the file is available. - `files[].url` (string, optional) URL used to download the generated report file when the task status is `available`. - `notifiers` (array, optional) List of delivery notifiers associated with the report generation task. - `notifiers[].id` (string, optional) Unique identifier (UUID) of the notifier. - `notifiers[].type` (string, optional) Delivery channel configured for the notifier. - `notifiers[].status` (string, optional) Current status of the notifier. - `notifiers[].version` (integer, optional) Current version of the notifier. ## Errors | Status | Error | Description | | ------- | ------- | ----------- | | 403 | forbidden | The report does not belong to the user associated with the Access Token. Use the token of the account that generated the report and verify the `uid` before trying again. | | 404 | not_found | No report was found for the specified `uid` and `reportId`. Check both identifiers or list the generated reports to obtain a valid `uid`. | ## Request example ### cURL ```bash curl -X GET \ 'https://api.mercadopago.com/v1/reporting/operations/{reportId}/statements/{uid}' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer ' ``` ## Response example ```json { "id": "6d17e034-6eb3-48fc-a6fa-461e886fa406", "status": "available", "date_start": "2026-03-01T00:00:00Z", "date_end": "2026-03-31T23:59:59Z", "date_created": "2026-03-31T15:42:30Z", "created_by": "manual", "structure": { "id": "aaaabbbb-1111-2222-3333-ccccddddeeee" }, "files": [ { "type": "text/csv", "name": "activities_collection.csv", "has_zip_version": false, "url": "https://api.mercadopago.com/v1/reporting/operations/activities_collection/statements/6d17e034-6eb3-48fc-a6fa-461e886fa406/download?format=csv" } ], "notifiers": [ { "id": "11112222-aaaa-bbbb-cccc-333344445555", "type": "webhook", "status": "ACTIVE", "version": 1 } ] } ```