0
votes

does anybod know how the API calls in Dynamics 365 are counted?

In particular the Organizationservice.Execute with ExecuteMultiple Request. Is this counted as one Request or is each Request inside the Requestcollecion counted by it's own?

Thanks Pascal

1

1 Answers

0
votes

As per Microsoft docs link, CRUD operations are counted in API limit. Execute multiple is basically a wrapper provided to improve performance of bulk operations. Refer to this link for details of ExecuteMultiple.

In nutshell, ExecuteMultiple behaves as if each request executed separately. So API limit will count all the requests executed by ExecuteMultiple and not one.