WarmablyWarmablyDOCS
Search docs⌘K
Dashboard
API Reference/Endpoints

Delete an account

DELETE/api/linkedin/gateway/accounts/{account_id}

Unlinks an account for good — its live session is torn down and Warmably stops syncing anything from it.

Authentication

Send your personal API key as a bearer token. A missing, malformed or revoked key returns 401.

Path parameters

FieldTypeDescription
account_id *stringThe account to delete. Must belong to this key.

Response fields

FieldTypeDescription
object"AccountDeleted"Confirms the account was removed.
This can't be undone — the account has to be connected again from scratch afterward, not reconnected.

Errors

·401 Unauthorized. The key is missing, malformed or has been rotated.·403 Forbidden. account_id doesn't belong to this key.·404 Not Found. No account with that id exists upstream.
CredentialsRequired
AuthorizationBearer wm_live_••••••••
RequestTry it
curl -X DELETE https://api.warmably.com/api/linkedin/gateway/accounts/459993d2-b0e7-4b19-baf9-45252ca324cf \
  -H "Authorization: Bearer wm_live_..."
Response
200 OK
{
  "object": "AccountDeleted"
}
No key yet? Create one from Dashboard → API Keys.