You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: "Retrieve a list of articles by collection or category. [See the documentation](https://developer.helpscout.com/docs-api/articles/list/)",
7
+
version: "0.0.1",
8
+
type: "action",
9
+
annotations: {
10
+
destructiveHint: false,
11
+
openWorldHint: true,
12
+
readOnlyHint: true,
13
+
},
14
+
props: {
15
+
helpscout,
16
+
collectionId: {
17
+
propDefinition: [
18
+
helpscout,
19
+
"collectionId",
20
+
],
21
+
},
22
+
categoryId: {
23
+
propDefinition: [
24
+
helpscout,
25
+
"categoryId",
26
+
({ collectionId })=>({
27
+
collectionId,
28
+
}),
29
+
],
30
+
optional: true,
31
+
},
32
+
status: {
33
+
propDefinition: [
34
+
helpscout,
35
+
"status",
36
+
],
37
+
},
38
+
sort: {
39
+
type: "string",
40
+
label: "Sort",
41
+
description: "The field to sort the articles by",
42
+
options: [
43
+
"number",
44
+
"status",
45
+
"name",
46
+
"popularity",
47
+
"createdAt",
48
+
"updatedAt",
49
+
],
50
+
optional: true,
51
+
},
52
+
order: {
53
+
type: "string",
54
+
label: "Order",
55
+
description: "The order to sort the articles by",
56
+
options: [
57
+
"asc",
58
+
"desc",
59
+
],
60
+
optional: true,
61
+
},
62
+
page: {
63
+
propDefinition: [
64
+
helpscout,
65
+
"page",
66
+
],
67
+
},
68
+
pageSize: {
69
+
type: "integer",
70
+
label: "Page Size",
71
+
description: "The number of articles to retrieve per page",
0 commit comments