List Shared Folder Files

API Explorer: /folders

To get the list of shared folder files, you will need the folderId. The example code on the right returns the list of the files in the shared folder with folderid of 5b96c41fad67294528f03df8. Use the actual ID value for the shared folder to get the list of files from that shared folder.

Caution: If you do not know the folderId of the shared folder, use List Shared Folders to return a list of your shared folders.

List Shared Folder Files Parameters

Parameters

  • filename string

    Narrows the list to files that contain this string

List Shared Folder Files

curl 'https://a.blazemeter.com/api/v4/folders/5b96c41fad67294528f03df8/files' \
    --user 'api_key_id:api_key_secret'
		

List Shared Folder Files Response Attributes

To see a breakdown of the attributes, please see The Folder Object section.

Response200 OK

{
    "api_version": 4,
    "error": null,
    "result": {
        "id": "5b7dc9c6c7dc9739167b23c8",
        "name": "ApiTest",
        "deleable": false,
        "created": 1534970310,
        "workspaceId": 123456,
        "files": [
            {
                "lastModified": 1588606663,
                "name": "Dummy.jmx",
                "size": 18111,
                "link": "https://storage.blazemeter.com/blazemeter-gcp/organizations/123429/shared/ApiTest/Dummy.jmx?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=GOOG1EE7F7ZECFQG2AMFT47JPCFCTXTGEW52TQE7AA2Y6DS4SCW37UO4ZSCNI%2F20200623%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20200623T204805Z&X-Amz-SignedHeaders=host&X-Amz-Expires=86400&X-Amz-Signature=677733c18cf94be0268b77d8f1d78108eb355433cc164c41872f3876ab141c41",
                "linkExpire": 1593031685
            },
            {
                "lastModified": 1585685174,
                "name": "colors.csv",
                "size": 286,
                "link": "https://storage.blazemeter.com/blazemeter-gcp/organizations/123429/shared/ApiTest/colors.csv?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=GOOG1EE7F7ZECFQG2AMFT47JPCFCTXTGEW52TQE7AA2Y6DS4SCW37UO4ZSCNI%2F20200623%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20200623T204805Z&X-Amz-SignedHeaders=host&X-Amz-Expires=86400&X-Amz-Signature=544b16e12b730fb4d76e1946a595cec4100bd3f47957358f8696283cf7df4e21",
                "linkExpire": 1593031685
            },
            {
                "lastModified": 1585685142,
                "name": "hello.txt",
                "size": 192,
                "link": "https://storage.blazemeter.com/blazemeter-gcp/organizations/123429/shared/ApiTest/hello.txt?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=GOOG1EE7F7ZECFQG2AMFT47JPCFCTXTGEW52TQE7AA2Y6DS4SCW37UO4ZSCNI%2F20200623%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20200623T204805Z&X-Amz-SignedHeaders=host&X-Amz-Expires=86400&X-Amz-Signature=1d357c42ccbd5a05abff31528dc3ac78a9c40fba8e7bfcad67782363d152d06f",
                "linkExpire": 1593031685
            }
        ]
    },
    "request_id": "5ef26a85751d4"
}