Delete Account
Disconnect a connected social account.
DELETE /v1/accounts/:id
Disconnect an account. Revokes token on the platform (best effort) and deletes the row.
Auth: Bearer API key (required)
Path parameters
| Param | Type | Description |
|---|---|---|
id | UUID | Connected account ID |
Response 204
Empty body on success.
cURL
curl -X DELETE https://api.social0.app/v1/accounts/ACCOUNT_UUID \
-H "Authorization: Bearer sk_live_YOUR_KEY"Errors
| HTTP | Code | When |
|---|---|---|
| 401 | invalid_api_key | Missing or invalid API key |
| 403 | forbidden | Account belongs to another user |
| 404 | not_found | Account not found |