I’m using the /v3/licenses API endpoint to search for licenses by user email.
For example:
https://api.cryptlex.com/v3/licenses?email=name@example.com
However, it seems the “email” query does not use exact match, but instead a wildcard.
So if I query:
https://api.cryptlex.com/v3/licenses?email=n
It returns the license for all users whose email address starts with “n”
It that intended?
Should I be using a different API if I want to query with email exact match?
(and note. the /v3/users API endpoint does use email exact matches, this is what caught me out)