Skip to main content
PATCH
/
articles
/
{permalink_id}
Update article
curl --request PATCH \
  --url https://{your-subdomain}.neetokb.com/api/external/v1/articles/{permalink_id} \
  --header 'Content-Type: application/json' \
  --header 'X-Api-Key: <x-api-key>' \
  --data '
{
  "title": "Getting Started",
  "state": "draft",
  "html_content": "<h1>Welcome</h1><p>Example content</p>",
  "slug": "getting-started",
  "page_title": "Getting Started",
  "meta_description": "A comprehensive guide to help you get started with our platform"
}
'
{
  "message": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://apidocs.neetokb.com/llms.txt

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

Deprecated: This is a v1 endpoint. It will continue to work, but we recommend migrating to the v2 equivalent for improved REST compliance (correct HTTP status codes, consistent response envelopes, and hyphenated URLs).
Replace {your-subdomain} with your workspace’s subdomain.
Learn how to find your subdomain in Workspace subdomain.

Headers

X-Api-Key
string
default:your-api-key
required

Use the X-Api-Key header to provide your workspace API key. Refer to Authentication for more information.

Path Parameters

Unique identifier of the article. Refer to the NeetoKB help article for detailed instructions.

Example:

"a-84af178b"

Body

application/json
title
string

Title of the article.

Example:

"Getting Started"

state
enum<string>

Status of the article.

Available options:
draft,
published
Example:

"draft"

html_content
string

Content of the article in HTML format.

Example:

"<h1>Welcome</h1><p>Example content</p>"

slug
string

URL-friendly version of the article's title. Can only be modified if the article's state is published.

Example:

"getting-started"

page_title
string

Title of the page (used for SEO). Can only be modified if the article's state is published.

Example:

"Getting Started"

meta_description
string

Description of the article's content (used for SEO). Can only be modified if the article's state is published.

Example:

"A comprehensive guide to help you get started with our platform"

Response

200 - application/json

OK - Request succeeded

message
string