timeline-entries

Get

GET
Gets an entry on an object's timeline.

Query parameters

idstringRequired
The ID of the timeline entry to get.

Response

This endpoint returns an object
timeline_entry
union
GET
1curl -G https://api.devrev.ai/timeline-entries.get \
2 -H "Authorization: <apiKey>" \
3 -d id=string
Response
1{
2 "timeline_entry": {
3 "type": "timeline_comment",
4 "id": "string",
5 "object": "string",
6 "object_display_id": "string",
7 "artifacts": [
8 {
9 "id": "string",
10 "display_id": "string"
11 }
12 ],
13 "body": "string",
14 "body_type": "snap_kit",
15 "created_by": {
16 "type": "dev_user",
17 "id": "string",
18 "display_id": "string",
19 "display_name": "string",
20 "display_picture": {
21 "id": "string",
22 "display_id": "string"
23 },
24 "email": "string",
25 "full_name": "string",
26 "state": "active"
27 },
28 "created_date": "2023-01-01T00:00:00Z",
29 "display_id": "string",
30 "modified_by": {
31 "type": "dev_user",
32 "id": "string",
33 "display_id": "string",
34 "display_name": "string",
35 "display_picture": {
36 "id": "string",
37 "display_id": "string"
38 },
39 "email": "string",
40 "full_name": "string",
41 "state": "active"
42 },
43 "modified_date": "2023-01-01T00:00:00Z",
44 "object_type": "capability",
45 "snap_kit_body": {
46 "body": {
47 "string": {}
48 },
49 "snap_in_action_name": "string",
50 "snap_in_id": "string"
51 },
52 "snap_widget_body": [
53 {
54 "type": "string"
55 }
56 ],
57 "visibility": "external"
58 }
59}