Application Processing (Appium) › Fetch patched APK URL (Server 3)
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.
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 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 imageInjectionEnabled boolean
screenshotUnblockEnabled boolean
Response 200▼
application/json Successful operation
data object
▶ Hide child attributesdata. cf_ap_patched_url string
Example: ""
data. cf_patched_url string
Example: ""
data. imageinjection_ready boolean
Example: false
data. patched_url string
Example: ""
data. screenshotunblock_ready boolean
Example: false
data. status string
Example: "success"
status string
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"
}