Skip to main content
PATCH
/
changelogs
/
{id}
Update changelog
curl --request PATCH \
  --url https://productlane.com/api/v2/changelogs/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "title": "<string>",
  "content": "<string>",
  "date": "2023-11-07T05:31:56Z",
  "published": true,
  "archived": true,
  "image_url": "<string>",
  "tag_ids": [
    "<string>"
  ],
  "language": "<string>"
}
'
{
  "id": "<string>",
  "created_at": "<string>",
  "updated_at": "<string>",
  "date": "<string>",
  "published": true,
  "archived": true,
  "title": "<string>",
  "content": "<string>",
  "image_url": "<string>",
  "tags": [
    {
      "id": "<string>",
      "name": "<string>",
      "color": "<string>",
      "icon": "<string>"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://productlane.mintlify.dev/docs/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Body

application/json
title
string
Minimum string length: 1
content
string

Markdown body.

Minimum string length: 1
date
string<date-time> | null
published
boolean
archived
boolean
image_url
string<uri> | null
tag_ids
string[]

Replaces the full tag set.

language
string

BCP-47 language code. When set, translatable fields upsert a translation row; non-translatable fields (published, archived, date, tag_ids) always apply to the base.

Response

Successful response

id
string
required
created_at
string
required
updated_at
string
required
date
string | null
required
published
boolean
required
archived
boolean
required
title
string
required
content
string
required
image_url
string | null
required
tags
object[]
required