Pylon List

Pylon List

Certified

List Pylon issues

Calls GET /issues, which requires a bounded time range (max 365 days) and returns issues page by page via cursor pagination. Defaults to the last 24 hours if startTime/endTime are not set.

yaml
type: io.kestra.plugin.pylon.issue.List

List issues updated in the last 24 hours

yaml
id: list_pylon_issues
namespace: company.team

tasks:
  - id: list_issues
    type: io.kestra.plugin.pylon.issue.List
    apiToken: "{{ secret('PYLON_API_TOKEN') }}"
    fetchType: FETCH
Properties

Pylon API token

API token created by a Pylon Admin user (Pylon Settings > API), sent as Authorization: Bearer <token> on every request. Store it as a Kestra secret and reference it with {{ secret('PYLON_API_TOKEN') }} — never hardcode it in a flow.

Defaulthttps://api.usepylon.com

Pylon API base URL

Base URL of the Pylon API. Defaults to the US region (https://api.usepylon.com); override with https://api.eu.usepylon.com for the EU region.

End time

End (inclusive) of the time range to list issues for, RFC3339. Defaults to now.

DefaultSTORE
Possible Values
STOREFETCHFETCH_ONENONE

Fetch type

FETCH returns all rows, FETCH_ONE returns the first row only, STORE streams rows to internal storage (ION), NONE returns no data. Defaults to STORE.

Default20000

Page size

Number of issues fetched per page (Pylon's own limit query parameter). Must be between 1 and 20000. Defaults to 20000.

Start time

Start (inclusive) of the time range to list issues for, RFC3339. Defaults to endTime minus 24 hours. The range must not exceed 365 days.

First row of fetched data

Only populated when fetchType is FETCH_ONE.

SubTypeobject

List of all fetched rows

Only populated when fetchType is FETCH.

Number of issues fetched

Formaturi

URI of stored results

Only populated when fetchType is STORE; file is stored in internal storage using ION format.