# Consult configurations Returns the active structure and notifiers for a previously configured Other Operations report, whose type is specified by `reportId`. In case of success, the request returns a response with status 200. **GET** `/v1/reporting/operations/{reportId}/config` ## Request parameters ### Path - `reportId` (string, required) Other Operations report type. ## Response parameters - `structure` (object, optional) Active structure associated with the configured Other Operations report. - `structure.id` (string, optional) Unique identifier (UUID) of the report structure. - `structure.name` (string, optional) Name assigned to the report structure. - `structure.file_format` (object, optional) Output-file settings configured for the report structure. - `structure.file_format.column_separator` (string, optional) Character used to separate columns in the CSV file. - `structure.file_format.date_format` (string, optional) Format used to represent dates in the report file. For example, `yyyy-MM-dd`. - `structure.file_format.prefix` (string, optional) Prefix used to compose the report file name once it is generated and ready for download. - `structure.columns` (array, optional) Columns included in the report structure. - `structure.columns[].key` (string, optional) Name of the report column included in the structure. - `structure.display_timezone` (string, optional) Timezone used to display dates and times in the report. It does not change the `gte` and `lte` values sent in `filters.creation_date.range`. - `structure.version` (integer, optional) Current version of the report structure. - `notifiers` (array, optional) Active notifiers associated with the report structure. - `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 | | ------- | ------- | ----------- | | 401 | invalid_token | The Access Token is invalid, expired, or does not have read permissions. Check the token sent in the `Authorization` header and its scopes, then submit the request again. | | 404 | configuration_not_found | No active configuration was found for the specified `reportId`. Check the report type or create its configuration with [POST /config](/developers/en/reference/reports/create-activity-report-configuration/post) before trying again. | ## Request example ### cURL ```bash curl -X GET \ 'https://api.mercadopago.com/v1/reporting/operations/{reportId}/config' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer ' ``` ## Response example ```json { "structure": { "id": "aaaabbbb-1111-2222-3333-ccccddddeeee", "name": "collections-structure", "file_format": { "column_separator": ",", "date_format": "yyyy-MM-dd", "prefix": "activities_" }, "columns": [ { "key": "date_created" } ], "display_timezone": "GMT-05", "version": 1 }, "notifiers": [ { "id": "11112222-aaaa-bbbb-cccc-333344445555", "type": "webhook", "status": "ACTIVE", "version": 1 } ] } ```