I’m trying to get a filtered list of users assigned to a specific app. By convention, this looks right:
{{url}}/api/v1/apps/{{appId}}/users?filter=profile.tenant_id+eq+“ABCD1234”
But, I get a response of:
{
“errorCode”: “E0000031”,
“errorSummary”: “Invalid search criteria.”,
“errorLink”: “E0000031”,
“errorId”: “_”,
“errorCauses”: []
}
Is this possible? If not, is there an alternative that doesn’t require me to get a list of assigned users, and then individually loop through each to lookup their details for my filter?
Thanks