fdback.iofdback.io

Get a changelog

Retrieve a single changelog entry by its slug.

GET
/changelogs/{slug}

Authorization

bearerAuth
AuthorizationBearer <token>

API key with sk_live_ or sk_test_ prefix. Create keys in your workspace settings.

In: header

Path Parameters

slug*string

Changelog slug

Response Body

application/json

application/json

application/json

application/json

application/json

curl -X GET "https://app.fdback.io/api/v1/changelogs/string"
{
  "data": {
    "id": "string",
    "title": "string",
    "slug": "string",
    "content": {},
    "contentHtml": "string",
    "publishedAt": "2019-08-24T14:15:22Z",
    "createdAt": "2019-08-24T14:15:22Z"
  }
}
{
  "error": {
    "code": "BAD_REQUEST",
    "message": "Missing required field: title",
    "status": 400
  }
}
{
  "error": {
    "code": "UNAUTHORIZED",
    "message": "Invalid API key.",
    "status": 401
  }
}
{
  "error": {
    "code": "NOT_FOUND",
    "message": "Post not found.",
    "status": 404
  }
}
{
  "error": {
    "code": "RATE_LIMITED",
    "message": "Too many requests. Please try again later.",
    "status": 429
  }
}