
Miro Trigger
CertifiedTrigger a flow when new Miro boards are created
Miro Trigger
Trigger a flow when new Miro boards are created
Polls the Miro boards list at the configured interval and fires an execution when one or more boards
have a createdAt timestamp in the half-open window (pollDate - interval, pollDate].
Detection is window-based: no persistent state is kept between polls.
Boards created during downtime or skipped polls fall outside the active window and will be missed.
Only the most recent limit boards (up to 50) are inspected per poll; creation bursts that exceed
limit in a single interval may also go undetected.
Filter by teamId or projectId to scope the watch to a specific workspace.
type: io.kestra.plugin.miro.boards.TriggerExamples
React when a new board is created in a team
id: on_new_miro_board
namespace: company.team
triggers:
- id: new_board
type: io.kestra.plugin.miro.boards.Trigger
token: "{{ secret('MIRO_TOKEN') }}"
teamId: "{{ secret('MIRO_TEAM_ID') }}"
interval: PT5M
tasks:
- id: handle_board
type: io.kestra.plugin.core.log.Log
message: "New board detected: {{ trigger.name }} (id: {{ trigger.id }})"
Properties
token *string
Miro OAuth 2.0 access token
Use {{ secret('MIRO_TOKEN') }} to keep the token out of flow definitions.
allowConcurrent boolean
falseSpecifies whether a trigger is allowed to start a new execution even if a previous run is still in progress.
interval string
PT5MdurationPolling interval
How often to poll the Miro boards list.
limit integerstring
20Page size
Number of boards to fetch per poll (1-50). Keep low if the team creates boards frequently.
options
HTTP client configuration
io.kestra.core.http.client.configurations.HttpConfiguration
falseIf true, allow a failed response code (response code >= 400)
List of response code allowed for this request
The authentication to use.
io.kestra.core.http.client.configurations.BasicAuthConfiguration
The password for HTTP basic authentication.
The username for HTTP basic authentication.
io.kestra.core.http.client.configurations.BearerAuthConfiguration
The token for bearer token authentication.
io.kestra.core.http.client.configurations.DigestAuthConfiguration
The password for HTTP Digest authentication.
The username for HTTP Digest authentication.
UTF-8The default charset for the request.
java.nio.charset.Charset
trueWhether to enable TCP Keep-Alive extended socket options (TCP_KEEPIDLE, TCP_KEEPINTERVAL, TCP_KEEPCOUNT).
Set to false when running on Windows workers, as these extended socket options are not supported by the Windows JDK and will cause connection failures.
trueWhether redirects should be followed automatically.
REQUEST_HEADERSREQUEST_BODYRESPONSE_HEADERSRESPONSE_BODYThe enabled log.
The proxy configuration.
io.kestra.core.http.client.configurations.ProxyConfiguration
The address of the proxy server.
The password for proxy authentication.
The port of the proxy server.
DIRECTDIRECTHTTPSOCKSThe type of proxy to use.
The username for proxy authentication.
The SSL request options
io.kestra.core.http.client.configurations.SslOptions
Whether to disable checking of the remote SSL certificate.
Only applies if no trust store is configured. Note: This makes the SSL connection insecure and should only be used for testing. If you are using a self-signed certificate, set up a trust store instead.
The timeout configuration.
io.kestra.core.http.client.configurations.TimeoutConfiguration
The time allowed to establish a connection to the server before failing.
PT5MThe time allowed for a read connection to remain idle before closing it.
projectId string
Project ID
Restrict the watch to boards in this project.
stopAfter array
CREATEDSUBMITTEDRUNNINGPAUSEDRESTARTEDKILLINGSUCCESSWARNINGFAILEDKILLEDCANCELLEDQUEUEDRETRYINGRETRIEDSKIPPEDBREAKPOINTRESUBMITTEDList of execution states after which a trigger should be stopped (a.k.a. disabled).
teamId string
Team ID
Restrict the watch to boards in this team.
when string
trueA condition that determines whether the trigger should run.
A Pebble expression evaluated at trigger time. The trigger fires only when the expression evaluates to a truthy value (true, a non-empty string, a non-zero number). Use this to gate trigger execution on dynamic runtime values such as execution labels, flow variables, or environment conditions.
Outputs
boards array
New boards
All new boards detected in this evaluation cycle.
count integer
Count
Number of new boards detected.
createdAt string
Created at
ISO-8601 creation timestamp of the first new board.
id string
Board ID
ID of the first new board detected.
name string
Board name
Name of the first new board detected.