Skip to content

List all changelogs

Introduction

The FeatureOS list all changelog API allows you to retrieve information about your changelogs.

GET https://api.featureos.app/api/v3/changelogs

Headers

Parameter Default Description
API-KEY-Generate from organization settings on the admin dashboard.

Query Parameters

Parameter Default Description
page1Used to paginate responses.
status-Can be set to published or unpublished post.

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"
}
]
}
]
}