pending, overdue, or already delivered.
Why deadlines exist
Report generation answers how and what. Deadlines answer when and whether it was met. Without a tracking layer, a team can produce perfect reports and still miss a filing window, because nothing in the reporting engine itself knows that a report was due. Deadlines solve a delivery-compliance problem. They turn recurring reporting obligations into tracked, dated commitments so that nothing slips silently:
- Regulatory reporting obligations — many filings must reach a regulator on a fixed schedule. A deadline records that obligation, its recurrence, and its delivery state, so a missed or late filing is visible before it becomes a compliance incident.
- Internal SLAs — recurring business reports often carry internal commitments (“finance receives the monthly close pack by the 5th”). Deadlines make those commitments explicit and measurable.
- Audit trails for delivery — because each deadline records
deliveredAtand moves throughpending→overdue→delivered, it leaves an auditable history of when each obligation was satisfied, not just that a report exists.
Who uses deadlines
Deadlines are a business and compliance tool layered on top of the reporting engine. Typical users include:
- A fintech delivering regulatory reports to BACEN on fixed monthly or annual schedules, using deadlines to guarantee each filing window is tracked and met.
- A treasury or finance team tracking recurring monthly report deliveries, using the calendar and status view to confirm each routine output went out on time.
- A compliance officer monitoring overdue obligations across the organization, filtering by
overduestatus to catch anything at risk before it escalates.
How deadlines fit the Reporter workflow
Deadlines wrap around reports and data sources to add a delivery status layer on top of the reporting engine. Data Sources provide the data, Templates define the output, and the reporting lifecycle produces the file. A deadline sits above all of that: it links (optionally) to the template that fulfills the obligation, watches the due date, and exposes a single status that tells the business whether the obligation has been met. In practice this means deadlines are non-intrusive. They never trigger, generate, or submit a report — they observe and record. You still generate reports through the normal lifecycle; the deadline is simply the tracker that turns that activity into a clear delivery status the rest of the organization can rely on.
What a deadline tracks
Each deadline captures the due date for a report obligation plus the metadata your team needs to manage it:
| Field | Description |
|---|---|
name | Human-readable name of the deadline (for example, Monthly Regulatory Report). |
description | Optional longer description of the obligation. |
type | Classification of the deadline, such as regulatory or custom. |
frequency | How often the deadline recurs, such as monthly or annual. |
dueDate | When the report is due, in RFC 3339 format. |
color | Hex color used to visually identify the deadline in dashboards. |
notifyDaysBefore | Number of days before the due date when notifications start. |
monthsOfYear | Months (1–12) in which the deadline applies. |
templateId | Optional UUID of the template used to fulfill the deadline. |
active | Whether the deadline is currently active. |
id, status (pending, overdue, or delivered), deliveredAt, templateName, createdAt, and updatedAt.
All deadline endpoints require the
X-Organization-id header. Include an Authorization: Bearer <token> header when Access Manager is enabled in your environment.Creating a deadline
Create a deadline with the Create a Deadline endpoint (
POST /v1/deadlines).
The required fields are name, type, frequency, dueDate, and color. The remaining fields are optional — set templateId to link the deadline to the template that fulfills it, and notifyDaysBefore to control when reminders begin.
201 Created with the full deadline, including its generated id and an initial status.
Listing deadlines
Retrieve deadlines with the Retrieve Deadlines endpoint (
GET /v1/deadlines). Results are paginated and can be filtered by status.
| Query parameter | Description | Default |
|---|---|---|
status | Filter by pending, overdue, or delivered. | — |
limit | Number of records per page (integer ≥ 1). | 10 |
page | Page number to return (integer ≥ 1). | 1 |
items array plus page, limit, and total for pagination.
Updating a deadline
Update an existing deadline with the Update a Deadline endpoint (
PATCH /v1/deadlines/{id}). Only the fields included in the request body are changed, so you can send a partial payload — for example, to push back a due date or deactivate a deadline:
200 OK with the updated deadline.
Deleting a deadline
Remove a deadline you no longer need to track with the Delete a Deadline endpoint (
DELETE /v1/deadlines/{id}). A successful request returns 204 No Content.
Marking a deadline as delivered
When the report behind a deadline has been filed or sent, mark the deadline as delivered with the Deliver a Deadline endpoint (
PATCH /v1/deadlines/{id}/deliver). This is the action that closes the loop in the tracking workflow: it moves the deadline’s status to delivered and stamps deliveredAt.
delivered is a boolean, the same endpoint can also reverse the action — send "delivered": false to reopen a deadline that was marked delivered by mistake. A successful request returns 200 OK with the updated deadline.
Delivering a deadline is a tracking action only. It records that the obligation was met — it does not generate or submit the underlying report. Generate the report through the reporting lifecycle, then mark the deadline delivered to keep your tracker accurate.
How deadlines fit the workflow
A typical obligation moves through these states:
Track its status
It shows as
pending until the due date, then overdue if the report hasn’t been delivered in time.Generate the report
Produce the report through the normal reporting lifecycle, using the linked template.
Next steps
Getting started with Reporter
Walk through the reporting lifecycle that deadlines track.
Using Reporter
Build the templates that fulfill your deadlines.
BACEN templates
Ready-to-use templates for Brazilian regulatory reporting.
Deadlines API
Full request and response reference for every deadline endpoint.

