List uploads
GET
/uploads
Base URL
https://app.testsigma.com/api/v1
Get all uploaded files (APKs, IPAs, attachments) available in the workspace.
Authenticate with your API key as a
Bearer token in the
Authorization header. Generate a key →RESPONSE ATTRIBUTES
id | Unique upload identifier. |
name | Name of the uploaded file. |
fileName | Original filename of the upload. |
fileSize | Size of the file in bytes. |
uploadType | Type — Attachment, AppActivity, etc. |
createdById | ID of the user who uploaded the file. |
createdDate | Epoch timestamp when the file was uploaded. |
REQUEST
curl -X GET \
'https://app.testsigma.com/api/v1/uploads' \
-H 'Authorization: Bearer <API_KEY>' \
-H 'Content-Type: application/json'const response = await fetch('https://app.testsigma.com/api/v1/uploads', {
method: 'GET',
headers: {
'Authorization': 'Bearer <API_KEY>',
'Content-Type': 'application/json'
}
});
const data = await response.json();import requests
response = requests.get(
'https://app.testsigma.com/api/v1/uploads',
headers={
'Authorization': 'Bearer <API_KEY>',
'Content-Type': 'application/json'
}
)
data = response.json()RESPONSE200OK
[
{
"id": 5,
"name": "SampleApp.apk",
"fileName": "SampleApp-v2.3.apk",
"fileSize": 4812344,
"uploadType": "AppActivity",
"createdById": 9,
"createdDate": 1680000000000
}
]