How can I delete my apps using API?

I need to delete my apps using API.

Hello Alex,

You can delete your app by running the below cURL command:

curl --location --request DELETE "https://username:accesskey@manual-api.lambdatest.com/app/delete" --header 'Content-Type: application/json' --data-raw '{
    "appIds" : "APPID1,APPID2"
}'

It should show the below response:

{
  "message": "Deleted successfully."
}