Reputation: 172
When querying https://orgURL/data/Customers. I receive a list with customers.
How can I find out the properties/attributes of a Customer, without querying all metadata -> /data/$metadata
Upvotes: 2
Views: 1438
Reputation: 1105
No. The Specification define $metadata
for the service root
only.
OData services expose their entity model according to [OData-CSDL] at the metadata URL, formed by appending $metadata to the service root URL.
Upvotes: 2
Reputation: 6793
If you need to get data for a specific customer you can add a filter to your OData URL, e.g.
https://orgURL/data/Customers?$filter=CustomerAccount eq 'Your_Customer_Id'
Upvotes: 0