There isn't a specific report that shows the login "path". What I suggest is to use the Audit API to check whether you can see any differences in the audit events when the login happens via the CRM versus directly in Genesys Cloud.
API: /api/v2/audits/query
Is the CRM login performed via SSO?
When the login is performed without SSO, the EntityType typically shows as AuthUser. When the login is performed via SSO, the EntityType changes to UserSamlAuthentication.
I recommend running a test using these filters to confirm whether you notice any differences.
Sample request body:
{
"interval": "2026-05-06T00:00:00.000-03:00/2026-05-06T23:59:59.999-03:00",
"serviceName": "PeoplePermissions",
"filters": [
{
"property": "EntityType",
"value": "AuthUser" //Or UserSamlAuthentication
}
],
"pageNumber": 1,
"pageSize": 50,
"sort": [
{
"name": "Timestamp",
"sortOrder": "desc"
}
]
}
------------------------------
Elisson Fernandes
------------------------------