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:[email protected]/app/delete" --header 'Content-Type: application/json' --data-raw '{
"appIds" : "APPID1,APPID2"
}'
It should show the below response:
{
"message": "Deleted successfully."
}