When running a REST GET query to retrieve Rally users "objectid" case match is not working.
Many times this is failing because the email address that is sent in the REST call is not an exact case match to the email address of the user within Rally.
Example: https://rally1.rallydev.com/slm/webservice/v2.0/user?query=(EmailAddress = [email protected])&fetch=ObjectID
This returns the object id for the user.
Example: https://rally1.rallydev.com/slm/webservice/v2.0/user?query=(EmailAddress = [email protected])&fetch=ObjectID
This does not return the object id because the user email in Rally is "[email protected]".
Notice the first.last is lower case.
If
Component : AGILE CENTRAL
Instead of using
https://rally1.rallydev.com/slm/webservice/v2.0/user?query=(EmailAddress CONTAINS "[email protected]")
If