Get all configured social connections
curl --request GET \
--url https://api.wacht.dev/social-connections \
--header 'Authorization: Bearer <token>'
[
{
"provider": "google",
"enabled": true,
"client_id": "<string>",
"scopes": [
"<string>"
],
"redirect_uri": "<string>"
}
]
JWT Bearer token authentication using the Authorization header
Successful response
The response is of type object[]
.
curl --request GET \
--url https://api.wacht.dev/social-connections \
--header 'Authorization: Bearer <token>'
[
{
"provider": "google",
"enabled": true,
"client_id": "<string>",
"scopes": [
"<string>"
],
"redirect_uri": "<string>"
}
]