Tools
Get Review Dates List
This endpoint gets all review dates data for your Knowledge Base
Copy
curl --location --request GET 'https://www.pacekb.com/api/v2/tools/review_dates' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer <api_key>' \
Copy
{
"success": true,
"data": [
{
"id": "<id>",
"name": "How to add a team user to PaceKB",
"status": "published",
"article_review_date": "2023-06-05T20:42:23.805Z",
"language": null,
"users_articles_created_byTousers": {
"username": "benj",
"first_name": "Ben",
"last_name": "Jenkins",
"email_address": "ben@example.com"
}
}
]
}
Response
Indicates whether the call was successful.
If there’s an error an accompanying error message will be visible
Array of all articles in Review Dates tool
Show Toggle object
Show Toggle object
ID of article
Article name
Status of article (draft, draftCopy, published)
Date when article is due for review
Language code of article (null = English)
Copy
curl --location --request GET 'https://www.pacekb.com/api/v2/tools/review_dates' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer <api_key>' \
Copy
{
"success": true,
"data": [
{
"id": "<id>",
"name": "How to add a team user to PaceKB",
"status": "published",
"article_review_date": "2023-06-05T20:42:23.805Z",
"language": null,
"users_articles_created_byTousers": {
"username": "benj",
"first_name": "Ben",
"last_name": "Jenkins",
"email_address": "ben@example.com"
}
}
]
}
Copy
curl --location --request GET 'https://www.pacekb.com/api/v2/tools/review_dates' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer <api_key>' \
Copy
{
"success": true,
"data": [
{
"id": "<id>",
"name": "How to add a team user to PaceKB",
"status": "published",
"article_review_date": "2023-06-05T20:42:23.805Z",
"language": null,
"users_articles_created_byTousers": {
"username": "benj",
"first_name": "Ben",
"last_name": "Jenkins",
"email_address": "ben@example.com"
}
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.