Hi,
I am testing web api and when I use the below query, it is searching only the records under my account. How to search in organization level
api/data/v9.1/accounts?$select=name&$top=3
I have admin permissions.
Thanks.
Hi,
I am testing web api and when I use the below query, it is searching only the records under my account. How to search in organization level
api/data/v9.1/accounts?$select=name&$top=3
I have admin permissions.
Thanks.
Good day Elangamban,
The following mentioned API actually have already searched in organization level while the result will give first priority to the enentity records under current user by default.
api/data/v9.1/accounts?$select=name&$top=3
You could remove '&$top=3' condition or use following query to confirm it:
api/data/v9.1/accounts?$select=name&$top=10&$orderby=name
More detailed data query API could be referred to following doc:
https://docs.microsoft.com/en-us/powerapps/developer/common-data-service/webapi/query-data-web-api
Regards
Johnny