Skip to main content
POST
/
docs
/
articles
Create docs article
curl --request POST \
  --url https://productlane.com/api/v2/docs/articles \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "title": "<string>",
  "content": "<string>",
  "group_id": "<string>",
  "summary": "<string>",
  "published": true,
  "icon": "<string>",
  "language": "<string>"
}
'
{
  "id": "<string>",
  "created_at": "<string>",
  "updated_at": "<string>",
  "title": "<string>",
  "summary": "<string>",
  "content": "<string>",
  "icon": "<string>",
  "url_name": "<string>",
  "published": true,
  "archived": true,
  "show_on_home_page": true,
  "image_url": "<string>",
  "group_id": "<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.

Body

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

Markdown body.

Minimum string length: 1
group_id
string
required
Minimum string length: 1
summary
string
published
boolean
icon
string

Nucleo icon name in PascalCase (e.g. FilePen). Defaults to FileText.

Required string length: 1 - 64
language
string

BCP-47 language code. When set, the article is created with the body on a translation row and the base row stays empty.

Response

Successful response

id
string
required
created_at
string
required
updated_at
string
required
title
string
required
summary
string
required
content
string
required
icon
string
required

Name of a Nucleo icon (PascalCase, e.g. Notepad, Atom). Must be a valid icon from https://nucleoapp.com - unknown names will not render in the dashboard or portal.

url_name
string
required
published
boolean
required
archived
boolean
required
show_on_home_page
boolean
required
image_url
string | null
required
group_id
string | null
required