Social Apps API
This API provides an endpoint to list configured social login applications and their statuses.
1. List Social Apps
Endpoint: api/v1/accounts/social-apps/
Method: GET
Permissions: AllowAny
Retrieves a list of social login apps and indicates if they are enabled (based on client_id and secret values).
Response Payload (Success)
[
{
"id": 1,
"name": "Google",
"client_id": "google-client-id",
"secret": "google-secret",
"is_enable": true
},
{
"id": 2,
"name": "Facebook",
"client_id": "",
"secret": "",
"is_enable": false
}
]