Application (Appium) › Fetch all uploaded applications (Server 1)
Application (Appium)
Fetch all uploaded applications (Server 1) Fetch all applications based on the provided type (android/iOS) and access level (user/organization).
Fetch all uploaded applications (Server 1) curl -- request GET \
-- url "https://manual-api.lambdatest.com/app/data" \
-- header "Authorization: Basic <encoded-value>"
{
"metaData" : {
"type" : "<string>" ,
"total" : 123
} ,
"data" : [
{
"app_id" : "<string>" ,
"name" : "<string>" ,
"type" : "<string>" ,
"updated_at" : "2018-03-15T12:00:00Z" ,
"shared" : true ,
"source" : "<string>"
}
]
}
Authorizations Authorization string header required
Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.
Query Parameters type string required
Application type (android/iOS)
level string required
Access level (user/organization)
offset integer
Page offset defines the number of records to skip before fetching data. It is used along with the limit to fetch a specific page of data.
limit integer
To fetch specified number of records. e.g. limit=10
Response 200▼
application/json Successfully retrieved applications.
metaData object
▶ Hide child attributesmetaData. type string
Example: "<string>"
data object[]
▶ Hide child attributesdata. app_id string
Example: "<string>"
data. name string
Example: "<string>"
data. type string
Example: "<string>"
data. updated_at string
Example: "2018-03-15T12:00:00Z"
data. shared boolean
Example: true
data. source string
Example: "<string>"
Fetch all uploaded applications (Server 1) curl -- request GET \
-- url "https://manual-api.lambdatest.com/app/data" \
-- header "Authorization: Basic <encoded-value>"
{
"metaData" : {
"type" : "<string>" ,
"total" : 123
} ,
"data" : [
{
"app_id" : "<string>" ,
"name" : "<string>" ,
"type" : "<string>" ,
"updated_at" : "2018-03-15T12:00:00Z" ,
"shared" : true ,
"source" : "<string>"
}
]
}