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: "Retrieves all content items. [See the documentation](https://api.aglty.io/swagger/index.html#operations-Sync-get__guid___apitype___locale__sync_items)",
description: "Retrieve content models for the Agility instance. [See the documentation](https://api.aglty.io/swagger/index.html#operations-ContentModels-get__guid___apitype__contentmodels)",
description: "Get details of the specified item. [See the documentation](https://api.aglty.io/swagger/index.html#operations-Item-get__guid___apitype___locale__item__id_)",
7
+
version: "0.0.1",
8
+
type: "action",
9
+
props: {
10
+
app,
11
+
locale: {
12
+
propDefinition: [
13
+
app,
14
+
"locale",
15
+
],
16
+
},
17
+
itemId: {
18
+
propDefinition: [
19
+
app,
20
+
"itemId",
21
+
(c)=>({
22
+
locale: c.locale,
23
+
}),
24
+
],
25
+
},
26
+
},
27
+
asyncrun({ $ }){
28
+
constresponse=awaitthis.app.getItem({
29
+
$,
30
+
locale: this.locale,
31
+
itemId: this.itemId,
32
+
});
33
+
34
+
$.export("$summary",`Successfully retrieved details of item ID '${response.contentID}'`);
0 commit comments