How can I install apps using Custom App ID with Appium & Node.js?

How can I install apps using Custom App ID with Appium & Node.js?

Hi Noah!

To install apps using Custom App ID for Appium testing with Node.js, please refer to the below cURL command -

Windows

curl -u "YOUR_LAMBDATEST_USERNAME:YOUR_LAMBDATEST_ACCESS_KEY" -X POST "https://manual-api.lambdatest.com/app/upload/realDevice" -F "appFile=@"C:\Users\varunkumarb\Downloads\proverbial_android.apk"" -F "custom_id=ENTER_CUSTOM_ID_HERE"

Linux/macOS

curl -u "YOUR_LAMBDATEST_USERNAME:YOUR_LAMBDATEST_ACCESS_KEY" \
--location --request POST 'https://manual-api.lambdatest.com/app/upload/realDevice' \
--form 'name="Android_App"' \
--form 'appFile=@"/Users/macuser/Downloads/proverbial_android.apk"' \
--form 'custom_id="ENTER_CUSTOM_ID_HERE"'

For more help, please check out the below GitHub repo -