Skip to main content
DELETE
/
v1
/
webhooks
/
accounts
/
{account_id}
Delete Webhook Account
curl --request DELETE \
  --url https://api.linkupapi.com/v1/webhooks/accounts/{account_id} \
  --header 'x-api-key: <x-api-key>'
{
  "message": "Account deleted successfully"
}
Permanently delete a LinkedIn or WhatsApp webhook account and stop all monitoring.
This action cannot be undone. Deleting an account will automatically stop monitoring and remove all associated data.
WhatsApp: This is the only way to stop WhatsApp monitoring. The stop monitoring endpoint only works for LinkedIn accounts.

Header Parameters

x-api-key
string
required
Your API key

Path Parameters

account_id
string
required
The ID of the account to delete

Response

message
string
Confirmation message
{
  "message": "Account deleted successfully"
}

Notes

  • Deleting an account automatically stops monitoring if it was active
  • All webhook configurations and monitoring data for this account will be permanently removed
  • This action cannot be undone - you will need to recreate the account if needed later
I