Pylon Get

Pylon Get

Certified

Get a Pylon issue

Calls GET /issues/{id} to fetch a single Pylon issue by its ID or issue number.

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

Fetch a Pylon issue by ID

yaml
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

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.

Issue ID or number

The Pylon issue ID (opaque string) or issue number to fetch.

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.

Issue

Full Pylon issue object as returned by the API.

Issue ID

Pylon-assigned identifier of the issue.