Skip to main content
Application Processing (Appium)Fetch patched APK URL (Server 3)
TestMu AI
StatusCommunityBlog
Application Processing (Appium)

Fetch patched APK URL (Server 3)

This endpoint facilitates the retrieval of a patched APK URL and provides information on whether the patching process is complete or not. It is essential for Appium automation and supports testing workflows.

POST
/mobile-automation/api/v1/fetchpatchedapkurl
Fetch patched APK URL (Server 3)
curl --request POST \
--url "https://manual-api.lambdatest.com/mobile-automation/api/v1/fetchpatchedapkurl" \
--header "Authorization: Basic <encoded-value>" \
--header "Content-Type: application/json" \
--data '{
"appId": "<appId>",
"imageInjectionEnabled": true,
"screenshotUnblockEnabled": true
}'
{
"data": {
"cf_ap_patched_url": "",
"cf_patched_url": "",
"imageinjection_ready": false,
"patched_url": "",
"screenshotunblock_ready": false,
"status": "success"
},
"status": "success"
}

Authorizations

Authorizationstringheaderrequired

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Body

application/json
appIdstring
imageInjectionEnabledboolean
screenshotUnblockEnabledboolean

Response

application/json

Successful operation

dataobject
data.cf_ap_patched_urlstring
Example: ""
data.cf_patched_urlstring
Example: ""
data.imageinjection_readyboolean
Example: false
data.patched_urlstring
Example: ""
data.screenshotunblock_readyboolean
Example: false
data.statusstring
Example: "success"
statusstring
Example: "success"
Fetch patched APK URL (Server 3)
curl --request POST \
--url "https://manual-api.lambdatest.com/mobile-automation/api/v1/fetchpatchedapkurl" \
--header "Authorization: Basic <encoded-value>" \
--header "Content-Type: application/json" \
--data '{
"appId": "<appId>",
"imageInjectionEnabled": true,
"screenshotUnblockEnabled": true
}'
{
"data": {
"cf_ap_patched_url": "",
"cf_patched_url": "",
"imageinjection_ready": false,
"patched_url": "",
"screenshotunblock_ready": false,
"status": "success"
},
"status": "success"
}