Application (Appium) › Delete your uploaded applications (Server 1)
Application (Appium)
Delete your uploaded applications (Server 1) Delete the uploaded applications based on the provided appIds.
Delete your uploaded applications (Server 1) curl -- request DELETE \
-- url "https://manual-api.lambdatest.com/app/delete" \
-- header "Authorization: Basic <encoded-value>" \
-- header "Content-Type: application/json" \
-- data ' {
"appIds" : "<appIds>"
} '
{
"message" : "Deleted successfully."
}
Authorizations Authorization string header required
Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.
Body application/json appIds string
Comma-separated string of App IDs to delete (e.g., "APP1016038711693231735315475")
Response 200▼
application/json Successfully deleted the selected application(s).
Delete your uploaded applications (Server 1) curl -- request DELETE \
-- url "https://manual-api.lambdatest.com/app/delete" \
-- header "Authorization: Basic <encoded-value>" \
-- header "Content-Type: application/json" \
-- data ' {
"appIds" : "<appIds>"
} '
{
"message" : "Deleted successfully."
}