Get Linked Social Accounts
GET
/auth/social/accounts
⚠️ BETA FEATURE - Get list of social accounts linked to the authenticated user.
Authorizations
SessionAuth
Session ID for authenticated requests
TypeAPI Key (header: X-Session-ID)
Responses
List of linked social accounts
application/json
JSON
{
"success": true,
"data": {
"accounts": [
{
"provider": "google",
"provider_email": "user@gmail.com",
"provider_name": "John Doe",
"provider_picture": "string",
"linked_at": "string",
"last_updated": "string"
}
]
}
}