Description
Lists users for a given email address.
This is intended to be used by a sign-in helper script. It returns the response in JSON format.
Input
<ListUsersByEmail> <email>email</email> </ListUsersByEmail>
The service does not require credentials. It is passed a single parameter, the email address.
Output
<ListUsersByEmail> <errorNumber>0</errorNumber> <data> [ { "userLogonReference": "userLogonReference", "name": "name", "email": "email" }, ... ] </data> </ListUsersByEmail>
The service returns a single element, data, which contains an array in JSON format. Each item of the array is an object with userLogonReference, name and email properties.
The email address in each object may be in a different case from the input email address.
A zero-length array means that the email address was not passed or not found.
Proxy users are not returned.
Errors
none