Delete a Version of an App
An individual app version can be deleted using the Delete App Version API method. This can be useful if the developer wants to delete a version of the app that has a status of “inDevelopment” (draft) or “pending”.
An example of how to delete an app version with id “5565322ae4b0a70b13a4563b” and version “2”:
curl --user {marketplaceId}:{secret} https://market.openchannel.io/v2/apps/5565322ae4b0a70b13a4563b/versions/2?
developerId=123
-X DELETE
Delete all Versions of an App
An entire app (and all it’s versions) can be deleted using the Delete App API method. This can be useful if the developer wants to completely delete the entire app and all of it’s versions.
An example of how to delete an entire app with id “5565322ae4b0a70b13a4563b”:
curl --user {marketplaceId}:{secret} https://market.openchannel.io/v2/apps/5565322ae4b0a70b13a4563b?
developerId=123
-X DELETE