Skip to main content

Get a specific addon

GET 

/api/admin/addons/:id

Retrieve information about the addon whose ID matches the ID in the request URL.

Request

Path Parameters

    id stringrequired

Responses

addonSchema

Schema

    id integerrequired

    The addon's unique identifier.

    Possible values: >= 1

    Example: 27
    provider stringrequired

    The addon provider, such as "webhook" or "slack".

    Example: webhook
    description stringnullablerequired

    A description of the addon. null if no description exists.

    Example: This addon posts updates to our internal feature tracking system whenever a feature is created or updated.
    enabled booleanrequired

    Whether the addon is enabled or not.

    parameters

    object

    required

    Parameters for the addon provider. This object has different required and optional properties depending on the provider you choose.

    property name* any

    Parameters for the addon provider. This object has different required and optional properties depending on the provider you choose.

    Example: {"url":"http://localhost:4242/webhook"}
    events string[]required

    The event types that trigger this specific addon.

    Example: ["feature-created","feature-updated"]
    projects string[]

    The projects that this addon listens to events from. An empty list means it listens to events from all projects.

    Example: ["new-landing-project","signups-v2"]
    environments string[]

    The list of environments that this addon listens to events from. An empty list means it listens to events from all environments.

    Example: ["development","production"]
Loading...