Get Automated Apps for a Company
This endpoint retrieves the list of automated apps for a specific company.
Endpoint Information
URL:
https://testinium.io/Testinium.RestApi/api/automated-apps/{companyId}
Method:
GET
Authentication: Required (
Bearer Token
)Header: Required (
current-company-id: <your_company_id>
)
Path Parameters
companyId
Long
Yes
The unique ID of the company.
Response
The response contains a list of automated apps associated with the specified company.
Response Fields
id
Long
The unique ID of the automated app.
app_type
String
The type of the app (e.g., android
, ios
).
app_name
String
The name of the app.
app_display_name
String
The display name of the app. If not provided, it will be an empty string.
app_file_path
String
The URL path to the app file (APK or IPA).
app_version
String
The version of the app.
app_package_name
String
The package name for Android apps.
app_identifier
String
The app identifier for iOS apps.
company_id
Long
The ID of the company that owns the app.
file_token
String
A unique token associated with the app file.
Error Codes
401
UNAUTHORIZED
The user is not authorized to access the resource.
403
FORBIDDEN
The user does not have permission to access the resource.
404
NOT_FOUND
No automated apps were found for the given company ID.
500
INTERNAL_ERROR
An internal server error occurred while processing the request.
Example Request
Last updated