Addons
Get a specific addon
Retrieve information about the addon whose ID matches the ID in the request URL.
get/api/admin/addons/{id}
Path parameters
idstring required
Response
addonSchema
Example response
{
"id": 27,
"provider": "webhook",
"description": "This addon posts updates to our internal feature tracking system whenever a feature is created or updated.",
"parameters": {
"url": "http://localhost:4242/webhook"
},
"events": [
"feature-created",
"feature-updated"
],
"projects": [
"new-landing-project",
"signups-v2"
],
"environments": [
"development",
"production"
]
}