Miro Trigger

Miro Trigger

Certified

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.

yaml
type: io.kestra.plugin.miro.boards.Trigger

React when a new board is created in a team

yaml
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

Miro OAuth 2.0 access token

Use {{ secret('MIRO_TOKEN') }} to keep the token out of flow definitions.

Defaultfalse

Specifies whether a trigger is allowed to start a new execution even if a previous run is still in progress.

DefaultPT5M
Formatduration

Polling interval

How often to poll the Miro boards list.

Default20

Page size

Number of boards to fetch per poll (1-50). Keep low if the team creates boards frequently.

HTTP client configuration

Definitions
allowFailedbooleanstring
Defaultfalse

If true, allow a failed response code (response code >= 400)

allowedResponseCodesarray
SubTypeinteger

List of response code allowed for this request

auth

The authentication to use.

type*object
passwordstring

The password for HTTP basic authentication.

usernamestring

The username for HTTP basic authentication.

type*object
tokenstring

The token for bearer token authentication.

type*object
passwordstring

The password for HTTP Digest authentication.

usernamestring

The username for HTTP Digest authentication.

defaultCharsetstring
DefaultUTF-8

The default charset for the request.

enabledTcpExtendedKeepAlivebooleanstring
Defaulttrue

Whether 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.

followRedirectsbooleanstring
Defaulttrue

Whether redirects should be followed automatically.

logsarray
SubTypestring
Possible Values
REQUEST_HEADERSREQUEST_BODYRESPONSE_HEADERSRESPONSE_BODY

The enabled log.

proxy

The proxy configuration.

addressstring

The address of the proxy server.

passwordstring

The password for proxy authentication.

portintegerstring

The port of the proxy server.

typestring
DefaultDIRECT
Possible Values
DIRECTHTTPSOCKS

The type of proxy to use.

usernamestring

The username for proxy authentication.

ssl

The SSL request options

insecureTrustAllCertificatesbooleanstring

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.

timeout

The timeout configuration.

connectTimeoutstring

The time allowed to establish a connection to the server before failing.

readIdleTimeoutstring
DefaultPT5M

The time allowed for a read connection to remain idle before closing it.

Project ID

Restrict the watch to boards in this project.

SubTypestring
Possible Values
CREATEDSUBMITTEDRUNNINGPAUSEDRESTARTEDKILLINGSUCCESSWARNINGFAILEDKILLEDCANCELLEDQUEUEDRETRYINGRETRIEDSKIPPEDBREAKPOINTRESUBMITTED

List of execution states after which a trigger should be stopped (a.k.a. disabled).

Team ID

Restrict the watch to boards in this team.

Defaulttrue

A 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.

SubTypeobject

New boards

All new boards detected in this evaluation cycle.

Count

Number of new boards detected.

Created at

ISO-8601 creation timestamp of the first new board.

Board ID

ID of the first new board detected.

Board name

Name of the first new board detected.