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
Authorizationstringheaderrequired
Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.
Query Parameters
typestringrequired
Application type (android/iOS)
levelstringrequired
Access level (user/organization)
offsetinteger
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.
limitinteger
To fetch specified number of records. e.g. limit=10
Response
application/jsonSuccessfully retrieved applications.
metaDataobject
metaData.typestring
Example: "<string>"
dataobject[]
data.app_idstring
Example: "<string>"
data.namestring
Example: "<string>"
data.typestring
Example: "<string>"
data.updated_atstring
Example: "2018-03-15T12:00:00Z"
data.sharedboolean
Example: true
data.sourcestring
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>"
}
]
}