Skip to content

Commit f1ed14b

Browse files
committed
Bruno: Add private API calls
1 parent 662778d commit f1ed14b

File tree

2 files changed

+48
-0
lines changed

2 files changed

+48
-0
lines changed
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
meta {
2+
name: system - active-users
3+
type: http
4+
seq: 5
5+
}
6+
7+
get {
8+
url: {{assetsUrl}}/private-api/system/active-users
9+
body: none
10+
auth: inherit
11+
}
12+
13+
settings {
14+
encodeUrl: true
15+
timeout: 0
16+
}
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
meta {
2+
name: system - asset update start
3+
type: http
4+
seq: 5
5+
}
6+
7+
post {
8+
url: {{assetsUrl}}/private-api/system/asset/update/start
9+
body: json
10+
auth: inherit
11+
}
12+
13+
body:json {
14+
{
15+
"filterQuery": "id:ASSET_ID",
16+
"extractMetadata": false,
17+
"reEmbedMetadata": false,
18+
"extractTextContent": false,
19+
"deleteRemovedAssetsFromIndex": false,
20+
"regenerateThumbnailsAndPreviews": true,
21+
"rebuildAutoCreatedRelations": false,
22+
"pruneBlacklist": false,
23+
"runExclusive": false,
24+
"pauseMillis": 0,
25+
"numThreads": 2
26+
}
27+
}
28+
29+
settings {
30+
encodeUrl: true
31+
timeout: 0
32+
}

0 commit comments

Comments
 (0)