Applications
Get Applications
GET https://api.appelium.com/v1/applications
This endpoint allows you to get the list of all applications available in your workspace.
Parameters
| NAME | PLACEMENT | TYPE | DESCRIPTION |
|---|---|---|---|
X-Appelium-TokenRequired |
Header | string |
API token generated in Dashboard |
200: OK
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | |
401: Unauthorized
{
"id": "388677B7-B016-4A6C-A8AE-887B3814114C",
"httpStatus": 401,
"title": "Unauthorized",
"detail": "Invalid or missing X-Appelium-Token header"
}
Get Application by ID
GET https://api.appelium.com/v1/applications/:applicationId
This endpoint allows you to get the details of the application based on the ID
Parameters
| NAME | PLACEMENT | TYPE | DESCRIPTION |
|---|---|---|---|
X-Appelium-TokenRequired |
Header | string |
API token generated in Dashboard |
applicationIdRequired |
Path | int |
ID of the Application |
200: OK
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | |
401: Unauthorized
{
"id": "388677B7-B016-4A6C-A8AE-887B3814114C",
"httpStatus": 401,
"title": "Unauthorized",
"detail": "Invalid or missing X-Appelium-Token header"
}
404: Not found
{
"id": "388677B7-B016-4A6C-A8AE-887B3814114C",
"httpStatus": 404,
"title": "Not Found",
"detail": "The application with given ID doesn't exist"
}