Hi @Tarkowski, Michael (M.) , The '+' sign is a special character. When calling APIs, special characters must be encoded before they can be used. So the original API should be:
https://graph.microsoft.com/beta/users?$filter=identities/any(a:c/issuerAssignedId eq '******@gmail.com' and a/issuer eq 'B2CQAFORD.onmicrosoft.com')
After encoding:
https://graph.microsoft.com/beta/users?%24filter%3Didentities%2Fany(a%3Ac%2FissuerAssignedId%20eq%20'test%252Btest1%40gmail.com'%20and%20a%2Fissuer%20eq%20'B2CQAFORD.onmicrosoft.com')
A simple API call test:
Hope this helps.
If the reply is helpful, please click Accept Answer and kindly upvote it. If you have additional questions about this answer, please click Comment.