
Pylon List
CertifiedList Pylon issues
Pylon List
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.
type: io.kestra.plugin.pylon.issue.ListExamples
List issues updated in the last 24 hours
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
apiToken *Requiredstring
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.
baseUrl string
https://api.usepylon.comPylon 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.
endTime string
End time
End (inclusive) of the time range to list issues for, RFC3339. Defaults to now.
fetchType string
STORESTOREFETCHFETCH_ONENONEFetch 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.
limit integerstring
20000Page size
Number of issues fetched per page (Pylon's own limit query parameter). Must be between 1 and 20000. Defaults to 20000.
startTime string
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.
Outputs
row object
First row of fetched data
Only populated when fetchType is FETCH_ONE.
rows array
List of all fetched rows
Only populated when fetchType is FETCH.
size integer
Number of issues fetched
uri string
uriURI of stored results
Only populated when fetchType is STORE; file is stored in internal storage using ION format.