v1

latestOpenAPI 3.1.02026-08-06173665.4 KB

Report file available for download.

Monato sends this webhook when a generated file is available for download. It can correspond to transaction reports or account statements in daily or monthly periods.

postWebhookreport

Payload

client_idstring required

Identificador único del cliente.

file_type'TRANSACTIONS' | 'ACCOUNT_STATEMENT' required

Tipo de archivo generado.

period'DAILY' | 'MONTHLY' required

Periodicidad del archivo generado.

file_namestring required

Nombre del archivo generado.

created_atstring date-time required

Fecha y hora en la que el archivo fue generado (ISO 8601).

account_idstring

Identificador de la cuenta asociada. Solo presente cuando file_type = ACCOUNT_STATEMENT.

Example payload

{
  "client_id": "9c6f6c8a-7c91-4b12-9a45-5cfdc78c22b1",
  "file_type": "TRANSACTIONS",
  "period": "DAILY",
  "file_name": "transactions_daily_20260224.csv",
  "created_at": "2026-02-24T10:30:15Z",
  "account_id": "1234567890"
}

Response

Report notification received successfully.