I'm using the Python plugin pyral.
I connect to Rally like this:
r = pyral.Rally(apikey="<My ID>", project="<My top level project>")
And then I search for a Rally story like this:
resp = r.get("UserStory", fetch=True, query='FormattedID = "{}"'.format(ID))
where ID is the Rally ticket #, something like AB12345.
This used to work but now it returns zero results. Why?