DELETE/v1/accounts/{id}

Disconnect an account

Disconnects a single social account. Synposter makes a best-effort attempt to revoke the OAuth grant on the platform's side, then removes the connected-account record from your account. The parent profile and any other connected accounts on it are left untouched, so this is the right call when an end user wants to remove just one of their handles.

curl -X DELETE https://api.synposter.com/v1/accounts/acct_... \
  -H "x-api-key: YOUR_API_KEY"

Status codes

204The account was disconnected successfully. No response body is returned.
401The API key was missing or invalid.
404Either no connected account with that ID exists, or it belongs to a different developer. The same code is returned in both cases so an attacker can't probe for valid IDs.
500Something failed on Synposter's side. Safe to retry.