Delete an Event
You can delete an existing Event through the Aptoide Connect Developer Console or programmatically via this API endpoint.
Endpoint
| Method | URL |
|---|---|
| DELETE | https://ws.catappult.io/api/events/{uid} |
Authentication
To access this API, you need to have an active account subscription on Aptoide Connect and authenticate with an API key (check here how to generate one).
⚠️
Account type required
Events can only be created, edited, or deleted by accounts of type Developer.
Headers
| Header | Type | Required | Description |
|---|---|---|---|
Api-Key | string | Required | Used to authenticate your API requests. The value is your Aptoide Connect API key. |
Path Parameters
| Parameter | Type | Description |
|---|---|---|
uid | string | The unique identifier (UUID) of the event to delete (e.g. 56fd535b-b071-402c-a4fa-29807eb050c9). |
Example Request
curl -X DELETE "https://ws.catappult.io/api/events/56fd535b-b071-402c-a4fa-29807eb050c9" \
-H "Api-Key: <YOUR_API_KEY>"
Response
Success
If the API call returns an HTTP 200 status code, the request was successful and the event has been deleted.
Example Response
"Event deleted."