articles

Get Article

GET
Gets an article.

Query parameters

idstringRequired
The ID of the required article.

Response

This endpoint returns an object
article
object
GET
1curl -G https://api.devrev.ai/articles.get \
2 -H "Authorization: <apiKey>" \
3 -d id=ARTICLE-12345
200
Retrieved
1{
2 "article": {
3 "applies_to_parts": [],
4 "id": "id",
5 "created_date": "2023-01-01T12:00:00Z",
6 "description": "description",
7 "display_id": "display_id",
8 "extracted_content": [
9 {
10 "id": "id"
11 }
12 ],
13 "modified_date": "2023-01-01T12:00:00Z",
14 "num_downvotes": 1,
15 "num_upvotes": 1,
16 "parent": {
17 "id": "id",
18 "display_id": "display_id"
19 },
20 "rank": "rank",
21 "resource": {
22 "artifacts": [
23 {
24 "id": "id"
25 }
26 ],
27 "url": "url"
28 },
29 "title": "title"
30 }
31}