list_output_members
curl --request GET \
--url https://ndi-api.nace.ai/v1/workspaces/{workspace_id}/files/{file_id}/outputs/{output_id}/members \
--header 'X-API-Key: <api-key>'{
"download_url_expires_at": "2023-11-07T05:31:56Z",
"members": [
{
"download_url": "<string>",
"file_name": "<string>",
"path": "<string>",
"preview_url": "<string>",
"size_bytes": 123
}
],
"total_count": 123
}{
"error": {
"code": "invalid_request",
"detail": null,
"message": "Request body has extra fields that this operation does not accept.",
"request_id": "req-01j9k2n3p4q5r6s7t8v9",
"retryable": false
}
}{
"error": {
"code": "invalid_request",
"detail": null,
"message": "Request body has extra fields that this operation does not accept.",
"request_id": "req-01j9k2n3p4q5r6s7t8v9",
"retryable": false
}
}list_output_members
List the objects inside a derived-output folder, each presigned inline. Cost class: fast.
A recording’s frames/ folder is registered as a single derived_file
output, not one row per frame, so this browses the folder straight from
storage. A leaf output (a single markdown/json file) has no members and
returns an empty page.
GET
/
v1
/
workspaces
/
{workspace_id}
/
files
/
{file_id}
/
outputs
/
{output_id}
/
members
list_output_members
curl --request GET \
--url https://ndi-api.nace.ai/v1/workspaces/{workspace_id}/files/{file_id}/outputs/{output_id}/members \
--header 'X-API-Key: <api-key>'{
"download_url_expires_at": "2023-11-07T05:31:56Z",
"members": [
{
"download_url": "<string>",
"file_name": "<string>",
"path": "<string>",
"preview_url": "<string>",
"size_bytes": 123
}
],
"total_count": 123
}{
"error": {
"code": "invalid_request",
"detail": null,
"message": "Request body has extra fields that this operation does not accept.",
"request_id": "req-01j9k2n3p4q5r6s7t8v9",
"retryable": false
}
}{
"error": {
"code": "invalid_request",
"detail": null,
"message": "Request body has extra fields that this operation does not accept.",
"request_id": "req-01j9k2n3p4q5r6s7t8v9",
"retryable": false
}
}Authorizations
Path Parameters
Workspace identifier.
Query Parameters
Members to skip, for paging a large folder.
Required range:
x >= 0Rows per page.
Required range:
1 <= x <= 200Response
Successful Response
A page of the objects inside a derived-output folder.
total_count is the whole folder; members is the requested window,
so a large frames/ folder streams into the console a page at a time
instead of presigning thousands of URLs at once.