I’m trying to reach a single entity according to instructions:
[Organization Root URL]/data/Customers('key')
but all I get is HTTP 404 Not Found.
When I try:
[Organization Root URL]/data/Customers
I get all customers just as expected. I am able to reach a single entity with:
[Organization Root URL]/data/Customers?$filter=CustomerAccount eq ‘key’
My main objective is to be able to invoke an action defined on the data entity. To be able to do that (as I understand it) you have to be able to reach a single entity including the action through:
[Organization Root URL]/data/Customers(‘key’)/ActionName
Am I missing something here?