
Pylon Get
CertifiedGet a Pylon issue
Pylon Get
Get a Pylon issue
Calls GET /issues/{id} to fetch a single Pylon issue by its ID or issue number.
type: io.kestra.plugin.pylon.issue.GetExamples
Fetch a Pylon issue by ID
id: get_pylon_issue
namespace: company.team
inputs:
- id: issue_id
type: STRING
tasks:
- id: get_issue
type: io.kestra.plugin.pylon.issue.Get
apiToken: "{{ secret('PYLON_API_TOKEN') }}"
issueId: "{{ inputs.issue_id }}"
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.
issueId *Requiredstring
Issue ID or number
The Pylon issue ID (opaque string) or issue number to fetch.
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.
Outputs
issue object
Issue
Full Pylon issue object as returned by the API.
issueId string
Issue ID
Pylon-assigned identifier of the issue.