Skip to main content
DELETE
/
v1
/
social
/
account
/
{accountId}
curl -X DELETE "https://api.hooked.ai/v1/social/account/clx123abc" \
  -H "x-api-key: your_api_key_here"
{
  "success": true,
  "message": "Account deleted successfully",
  "data": {
    "id": "clx123abc",
    "deleted": true
  }
}

Overview

This endpoint permanently deletes an analyzed account and all its associated data from your team’s workspace.

Path Parameters

accountId
string
required
The internal account ID to delete

Response

success
boolean
Indicates if the request was successful
message
string
Status message
data
object
curl -X DELETE "https://api.hooked.ai/v1/social/account/clx123abc" \
  -H "x-api-key: your_api_key_here"
{
  "success": true,
  "message": "Account deleted successfully",
  "data": {
    "id": "clx123abc",
    "deleted": true
  }
}
This action is permanent and cannot be undone. All associated data including videos and analytics will be deleted.
You can only delete accounts that belong to your team. Attempting to delete another team’s account will result in a 403 Forbidden error.

Authorizations

x-api-key
string
header
required

Path Parameters

accountId
string
required

Response

200

Account deleted successfully