Skip to main content
extensionsFetch all extensions uploaded by the user
TestMu AI
StatusCommunityBlog
extensions

Fetch all extensions uploaded by the user

This API fetches all the extensions which are uploaded to our lambda storage.

GET
/files/extensions
Fetch all extensions uploaded by the user
curl --request GET \
--url "https://api.lambdatest.com/automation/api/v1/files/extensions" \
--header "Authorization: Basic <encoded-value>"
{
"Meta": {
"org_id": 12345,
"total": 1
},
"data": [
{
"key": "extension_1.zip",
"last_modified_at": "2020-08-02T06:46:08Z",
"size": 104,
"s3_url": "https://automation-prod-user-files.s3.amazonaws.com/extensions/orgId-123456/extension_1.zip"
}
]
}

Authorizations

Authorizationstringheaderrequired

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Response

application/json

Successful operation

Metaobjectrequired
Meta.org_idnumber
Example: 12345
Meta.totalnumber
Example: 1
dataobject[]required
data.keystring
Example: "extension_1.zip"
data.last_modified_atstring
Example: "2020-08-02T06:46:08Z"
data.sizenumber
Example: 104
data.s3_urlstring
Example: "https://automation-prod-user-files.s3.amazonaws.com/extensions/orgId-123456/extension_1.zip"
Fetch all extensions uploaded by the user
curl --request GET \
--url "https://api.lambdatest.com/automation/api/v1/files/extensions" \
--header "Authorization: Basic <encoded-value>"
{
"Meta": {
"org_id": 12345,
"total": 1
},
"data": [
{
"key": "extension_1.zip",
"last_modified_at": "2020-08-02T06:46:08Z",
"size": 104,
"s3_url": "https://automation-prod-user-files.s3.amazonaws.com/extensions/orgId-123456/extension_1.zip"
}
]
}