Hello Team,
We are using UAA version: 77.10.0
We are on MYSQL DB: 8.0.mysql_aurora.3.05.2
Requirement:
We have a use case, where assume we have 20 users, 10 users belongs to Group_1 and remaining 10 users belongs to Group_2.
We are interested in fetching only those users, which belongs to Group_1.
We tried below 2 options:
Option 1: Using display name of group in filter.
GET - http://localhost:8080/uaa/Users?filter=origin eq "uaa" and groups.display eq "profile"
Its giving empty response:
{
"resources": [],
"startIndex": 1,
"itemsPerPage": 100,
"totalResults": 0,
"schemas": [
"urn:scim:schemas:core:1.0"
]
}
Question: Even if data is present for the display name of group, its giving EMPTY response.
Is this some know limitation / issue??
Please note: This is working for email attribute (http://localhost:8080/uaa/Users?filter=origin eq "uaa" and emails.value co "marissa@test.org")
Option 2: Using Group id in filter.
http://localhost:8080/uaa/Users?filter=origin eq "uaa" and groups.value eq "09e29460-e03a-4941-8c83-1795ba65ea3b"
{
"error_description": "Invalid filter expression: [origin eq "uaa" and groups.value eq "09e29460-e03a-4941-8c83-1795ba65ea3b"] [created]",
"error": "scim",
"message": "Invalid filter expression: [origin eq "uaa" and groups.value eq "09e29460-e03a-4941-8c83-1795ba65ea3b"] [created]"
}
Observation: Looks like this is not supported scim filter. So its not working here.
Can someone help here? We need to query on display name of group.
Hello Team,
We are using UAA version: 77.10.0
We are on MYSQL DB: 8.0.mysql_aurora.3.05.2
Requirement:
We have a use case, where assume we have 20 users, 10 users belongs to Group_1 and remaining 10 users belongs to Group_2.
We are interested in fetching only those users, which belongs to Group_1.
We tried below 2 options:
Option 1: Using display name of group in filter.
GET - http://localhost:8080/uaa/Users?filter=origin eq "uaa" and groups.display eq "profile"
Its giving empty response:
{
"resources": [],
"startIndex": 1,
"itemsPerPage": 100,
"totalResults": 0,
"schemas": [
"urn:scim:schemas:core:1.0"
]
}
Question: Even if data is present for the display name of group, its giving EMPTY response.
Is this some know limitation / issue??
Please note: This is working for email attribute (http://localhost:8080/uaa/Users?filter=origin eq "uaa" and emails.value co "marissa@test.org")
Option 2: Using Group id in filter.
http://localhost:8080/uaa/Users?filter=origin eq "uaa" and groups.value eq "09e29460-e03a-4941-8c83-1795ba65ea3b"
{
"error_description": "Invalid filter expression: [origin eq "uaa" and groups.value eq "09e29460-e03a-4941-8c83-1795ba65ea3b"] [created]",
"error": "scim",
"message": "Invalid filter expression: [origin eq "uaa" and groups.value eq "09e29460-e03a-4941-8c83-1795ba65ea3b"] [created]"
}
Observation: Looks like this is not supported scim filter. So its not working here.
Can someone help here? We need to query on display name of group.