Lookup Sales for a given Customer ID?

in Development
I have tried to make the call to Customer.json adding on the load_relations=all but don't see any access to their sales for that Customer record. Is there any read API call (or chained set of calls) that will let me get back a list of Sales for a Customer?
1 comment
Hey,
To lookup sales by customerID, you can add the following query parameter to the Sales endpoint API call:
?customerID={customerID}
Thanks