AI resources
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

https://api.mercadopago.com/v1/reporting/operations/{reportId}/statements/{uid}
Request parameters
Header
Authorization
string

REQUIRED

Access Token obtained through the developer panel. Must be sent in all requests.
Path
reportId
string

REQUIRED

Other Operations report type.
activities_collection: Collection report.
activities_after_collection: Post-collection report.
activities_withdraw: Withdrawal report.
uid
string

REQUIRED

Unique identifier (UUID) of the generation task, returned as record_id when the report is created.
Response parameters
id
string
Unique identifier (UUID) of the report generation task. This value matches the uid sent in the request.
status
string
Current report generation status. The possible values are:
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.
date_start
string
Start date and time of the period covered by the report, in ISO 8601 format.
date_end
string
End date and time of the period covered by the report, in ISO 8601 format.
Errors

403The report does not belong to the authenticated user.

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.

404Report not found.

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
curl -X GET \
    'https://api.mercadopago.com/v1/reporting/operations/{reportId}/statements/{uid}'\
    -H 'Content-Type: application/json' \
       -H 'Authorization: Bearer APP_USR-4*********782856-12*********f202ca494*********f0baa4bb3*********648' \
    
Response
{
  "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
    }
  ]
}