Get authentication status
Get authentication status for all supported providers
Get authentication status for all supported providers
from mix_python_sdk import Mixwith Mix() as mix: res = mix.authentication.get_auth_status() # Handle response print(res)
{
"providers": {
"property1": {
"auth_method": "oauth",
"authenticated": true,
"display_name": "string"
},
"property2": {
"auth_method": "oauth",
"authenticated": true,
"display_name": "string"
}
}
}
{
"error": {
"code": 0,
"message": "string",
"type": "bad_request"
}
}