Changelog
featureOS get a changelog API
Introduction
The featureOS get a changelog API allows you to retrieve information about your changelogs and their associated labels.
GET https://api.featureos.app/api/v3/changelogs/:id
Headers
Parameter | Default | Description |
---|---|---|
API-KEY | - | Generate from organization settings on the admin dashboard. |
Query Parameters
Parameter | Default | Description |
---|---|---|
id | - | The ID of the changelog returned in the list changelogs endpoint. |
Sample response
{
"changelogs": [
{
"id": 1,
"title": "API V1 is now live!",
"preview": "Go use our new API now!",
"description": "<p>Go use our new API now! Go on, you can do it!</p>",
"url": "https://feeback.featureos.app/changelogs/api-v1-is-now-live",
"published": true,
"published_on": "October 12th, 2021",
"author": {
"name": "S Jobs",
"email": "[email protected]"
},
"labels": [
{
"id": 3,
"name": "New Feature",
"color": "green"
}
],
"feature_requests": [
{
"id": 4229,
"slug": "chrissy-smith",
"title": "Chrissy Smith",
"preview": "Chrissy Smith",
"description": "This is a description for dummies. \n\n",
"description_html": "<p>This is a description for dummies.</p>",
"status": "Submitted",
"url": "https://feedback.featureos.app/b/api/p/chrissy-smith",
"submitter": {
"name": "Swathy",
"email": "[email protected]"
},
"bucket": {
"id": 14,
"name": "API"
},
"downvotes_count": 0,
"comments_count": 0,
"created_at": "2021-10-20T13:58:49.000Z",
"updated_at": "2021-10-20T13:58:49.000Z"
}
]
}
]
}