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
Copy file name to clipboardExpand all lines: docs/api.md
+14-10Lines changed: 14 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -709,7 +709,7 @@ Parameters:
709
709
710
710
| Property Name | Type | Description |
711
711
|---------------|------|-------------|
712
-
|`items`| Array<Object>|**(Required)** Array of objects, each with an `id` and the new `sort_order`. |
712
+
|`items`| Array(Object)|**(Required)** Array of objects, each with an `id` and the new `sort_order`. |
713
713
714
714
Example request:
715
715
@@ -1681,7 +1681,7 @@ Parameters:
1681
1681
1682
1682
| Property Name | Type | Description |
1683
1683
|---------------|------|-------------|
1684
-
|`items`| Array<Object>|**(Required)** Array of objects, each with an `id` and the new `sort_order`. |
1684
+
|`items`| Array(Object)|**(Required)** Array of objects, each with an `id` and the new `sort_order`. |
1685
1685
1686
1686
Example request:
1687
1687
@@ -1908,7 +1908,7 @@ Parameters:
1908
1908
1909
1909
| Property Name | Type | Description |
1910
1910
|---------------|------|-------------|
1911
-
|`ids`| Array<String>|**(Required)** Array of [Job.id](data.md#job-id) values. |
1911
+
|`ids`| Array(String)|**(Required)** Array of [Job.id](data.md#job-id) values. |
1912
1912
|`verbose`| Boolean | Optional. If `true`, includes heavy fields; otherwise they are pruned. |
1913
1913
1914
1914
Example request:
@@ -2170,7 +2170,7 @@ Parameters:
2170
2170
| Property Name | Type | Description |
2171
2171
|---------------|------|-------------|
2172
2172
|`id`| String |**(Required)** The [Job.id](data.md#job-id). |
2173
-
|`tags`| Array<String>|**(Required)** Full replacement list of tags for the job. |
2173
+
|`tags`| Array(String)|**(Required)** Full replacement list of tags for the job. |
2174
2174
2175
2175
Example request:
2176
2176
@@ -2482,7 +2482,7 @@ Parameters:
2482
2482
2483
2483
| Property Name | Type | Description |
2484
2484
|---------------|------|-------------|
2485
-
|`items`| Array<Object>|**(Required)** Array of objects, each with an `id` and the new `sort_order`. |
2485
+
|`items`| Array(Object)|**(Required)** Array of objects, each with an `id` and the new `sort_order`. |
2486
2486
2487
2487
Example request:
2488
2488
@@ -3355,6 +3355,10 @@ Example response:
3355
3355
3356
3356
In addition to the [Standard Response Format](#standard-response-format), this will include an `items` array containing per-day records with `epoch`, human-readable `date`, and the selected `data` subtree, plus a `list` object containing list metadata.
3357
3357
3358
+
### bulk_search_export
3359
+
3360
+
3361
+
3358
3362
### marketplace
3359
3363
3360
3364
```
@@ -5282,10 +5286,10 @@ Parameters (choose either the high-level selectors or a custom `items` array):
5282
5286
5283
5287
| Property Name | Type | Description |
5284
5288
|---------------|------|-------------|
5285
-
|`lists`| Array<String> or String | List IDs from `config.ui.list_list` or the literal string `"all"`. Each exports the corresponding `global/NAME` list and pages. |
5286
-
|`indexes`| Array<String> or String | Database index IDs from `config.ui.database_list` or `"all"`. Exports matching DB records (newest to oldest). |
5287
-
|`extras`| Array<String> or String | Optional extras or `"all"`. Supported: `user_avatars`, `job_files`, `job_logs`, `monitor_data`, `stat_data`. |
|`lists`| Array(String) or String | List IDs from `config.ui.list_list` or the literal string `"all"`. Each exports the corresponding `global/NAME` list and pages. |
5290
+
|`indexes`| Array(String) or String | Database index IDs from `config.ui.database_list` or `"all"`. Exports matching DB records (newest to oldest). |
5291
+
|`extras`| Array(String) or String | Optional extras or `"all"`. Supported: `user_avatars`, `job_files`, `job_logs`, `monitor_data`, `stat_data`. |
|`token`| String | Single-use token from [get_transfer_token](#get_transfer_token). When present, parameters from the token are applied and the token is invalidated. |
5290
5294
5291
5295
Response: A `200 OK` streaming gzip file. The content is NDJSON containing a mix of:
0 commit comments