Enable automatic generation - Releases - Mercado Pago Developers
Which documentation are you looking for?

Do not know how to start integrating? 

Check the first steps
Enable automatic generation

POST

https://api.mercadopago.com/v1/account/release_report/schedule
This endpoint allows for the automatic creation of the report using the frequency assigned during the configuration of your reports. When consuming this service, the 'scheduled' property, previously configured during the configuration creation, will be automatically updated to 'true'.
Request's parameters
You dont need to use any parameters to make the request.
Response parameters
id
number
This field indicates the unique identifier of the generated report.
account_id
number
This field indicates the unique identifier of the account associated with the report.
begin_date
string
The start date and time of the report interval, in the UTC time zone (indicated by the 'Z' at the end, which stands for 'Zulu time' or Coordinated Universal Time).
created_from
string
This field indicates how the report was generated, being 'manual' for manually generated reports and 'schedule' for scheduled reports.
Errors

401Unauthorized.

Invalid token

Invalid token.

Request
curl -X POST \
    'https://api.mercadopago.com/v1/account/release_report/schedule'\
    -H 'Content-Type: application/json' \
       -H 'Authorization: Bearer TEST-2151*********762-03031*********750b665b7*********4dac477-1*********' \
    
Sample answer
{
  "id": 99336983670,
  "account_id": 167345291,
  "begin_date": "2022-08-01T03:00:00Z",
  "created_from": "schedule",
  "currency_id": "ARS",
  "end_date": "2022-08-08T02:59:59Z",
  "generation_date": "2024-02-16T15:55:22.258-04:00",
  "internal_management": [
    {
      "is_visible": true,
      "notify": false,
      "use_exact_time": true
    }
  ],
  "is_reserve": false,
  "is_test": false,
  "last_modified": "2024-02-16T15:55:22.261-04:00",
  "report_id": 17012160,
  "retries": 0,
  "status": "processed",
  "sub_type": "release",
  "user_id": 123456789,
  "format": "CSV"
}