Sample payload
Endpoints
Create Article
POST /articles
Create a new article. Use the sample payload as a guide for the request body.
Get all Articles
GET /articles
Retrieve all articles.
Get a single Article
GET /articles/<article_key>
Retrieve a single article by its key.
Unique key of the article.
Update Article
PATCH /articles/<article_key>
Update an existing article. Include only the fields you want to change.
Unique key of the article.
Delete Article
DELETE /articles/<article_key>
Delete an article.
Unique key of the article.
