Skip to main content
POST
/
changelogs
Create changelog
curl --request POST \
  --url https://productlane.com/api/v1/changelogs \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "title": "<string>",
  "content": "<string>",
  "date": "2023-11-07T05:31:56Z",
  "published": false
}
'
{
  "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,
  "projectId": "<string>",
  "workspaceId": "<string>",
  "notes": "<unknown>"
}

Authorizations

Authorization
string
header
required

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

Body

application/json
title
string
required
Minimum string length: 1
content
string
required
Minimum string length: 1
date
string<date-time>
published
boolean
default:false

Response

Successful response

id
string
required
createdAt
string<date-time>
required
updatedAt
string<date-time>
required
isDeleted
boolean
required
version
number
required
date
string<date-time> | null
required
published
boolean
required
title
string
required
archived
boolean
required
projectId
string | null
required
workspaceId
string
required
notes
any