cURL
curl --request PATCH \ --url https://productlane.com/api/v1/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, "tagIds": [ "<string>" ] } '
{ "id": "<string>", "createdAt": "2023-11-07T05:31:56Z", "updatedAt": "2023-11-07T05:31:56Z", "isDeleted": true, "version": 123, "date": "2023-11-07T05:31:56Z", "published": true, "title": "<string>", "archived": true, "imageUrl": "<string>", "projectId": "<string>", "workspaceId": "<string>", "notes": "<unknown>", "tags": [ { "id": "<string>", "name": "<string>", "color": "<string>", "icon": "<string>" } ] }
Update a changelog entry by ID. The content supports markdown format. Authentication is required.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
1
Successful response
Show child attributes