curl --request GET \
--url https://api.example.com/cabinet/auth/account/linked-providers \
--header 'Authorization: Bearer <token>'{
"providers": [
{
"provider": "<string>",
"linked": true,
"identifier": "<string>"
}
]
}Return all auth methods with their link status for the current user.
curl --request GET \
--url https://api.example.com/cabinet/auth/account/linked-providers \
--header 'Authorization: Bearer <token>'{
"providers": [
{
"provider": "<string>",
"linked": true,
"identifier": "<string>"
}
]
}