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