extensions › Fetch all extensions uploaded by the user
extensions
Fetch all extensions uploaded by the user This API fetches all the extensions which are uploaded to our lambda storage.
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 Authorization string header required
Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.
Response 200▼
application/json Successful operation
Meta object required
▶ Hide child attributesMeta. org_id number
Example: 12345
Meta. total number
Example: 1
data object[] required
▶ Hide child attributesdata. key string
Example: "extension_1.zip"
data. last_modified_at string
Example: "2020-08-02T06:46:08Z"
data. size number
Example: 104
data. s3_url string
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"
}
]
}