WarmablyWarmablyDOCS
Search docs⌘K
Dashboard
API Reference/Endpoints

Restart an account

POST/api/linkedin/gateway/accounts/{account_id}/restart

Kicks the background sources behind a frozen or unresponsive account back into life, without tearing down and re-establishing its session the way a reconnect would.

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 restart. Must belong to this key.

Response fields

FieldTypeDescription
object"AccountRestarted" | "AccountFailedToRestart"Whether the restart actually took — both come back with a 200.
Check object even on a 200 — a failed restart isn't surfaced as an error status.

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 POST https://api.warmably.com/api/linkedin/gateway/accounts/459993d2-b0e7-4b19-baf9-45252ca324cf/restart \
  -H "Authorization: Bearer wm_live_..."
Response
200 OK
{
  "object": "AccountRestarted"
}
No key yet? Create one from Dashboard → API Keys.