DELETE
/
me
/
social-connections
/
{id}
Disconnect Social Connection
curl --request DELETE \
  --url https://{deploymentHost}/me/social-connections/{id}
{
  "status": 200,
  "message": "",
  "data": {
    "disconnected": true,
    "connection_id": "social_123456789",
    "provider": "google",
    "disconnected_at": "2024-01-15T15:30:00Z"
  },
  "session": {
    "signin_attempts": [],
    "signins": [
      {
        "id": "signin_987654321",
        "user_id": "user_456789123",
        "created_at": "2024-01-01T12:00:00Z"
      }
    ],
    "signup_attempts": [],
    "active_signin": {
      "id": "signin_987654321",
      "user_id": "user_456789123",
      "created_at": "2024-01-01T12:00:00Z"
    }
  },
  "errors": []
}

Authorizations

__session
string
cookie
required

Session cookie authentication for production deployments. The session token is automatically set as an HTTP-only, secure cookie.

Path Parameters

id
string
required

Social connection ID to disconnect

Response

200
application/json

Social connection disconnected successfully

The response is of type object.