Skip to content

Commit 66fa838

Browse files
committed
Update executeMultiple.md
1 parent 627db8b commit 66fa838

File tree

1 file changed

+4
-4
lines changed
  • powerapps-docs/developer/model-driven-apps/clientapi/reference/Xrm-WebApi/online

1 file changed

+4
-4
lines changed

powerapps-docs/developer/model-driven-apps/clientapi/reference/Xrm-WebApi/online/executeMultiple.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ If you want to execute multiple requests in a transaction, you must pass in a ch
2424

2525
> [!NOTE]
2626
> - You cannot include read operations (retrieve, retrieve multiple, and Web API functions) as part of a change set; this is as per the OData v4 specifications.
27-
> - Requests can contain up to 1000 individual requests and cannot contain other requests.This is because of the limitation on the underlying Common Data Service implementation and not on the API itself. More information: [Execute batch operations](https://docs.microsoft.com/powerapps/developer/common-data-service/webapi/execute-batch-operations-using-web-api).
27+
> - Requests can contain up to 1000 individual requests and cannot contain other batches. More information: [Execute batch operations](https://docs.microsoft.com/powerapps/developer/common-data-service/webapi/execute-batch-operations-using-web-api).
2828
2929
## Syntax
3030

@@ -69,9 +69,9 @@ Xrm.WebApi.online.executeMultiple(requests).then(successCallback, errorCallback)
6969
<td>requests</td>
7070
<td>Array of objects</td>
7171
<td>Yes</td>
72-
<td><p>An array of one of one of the following types:</p>
72+
<td><p>An array of one of the following types:</p>
7373
<ul>
74-
<li>objects where each object is an action, function, or CRUD request that you want to execute against the Web API endpoint. Each object exposes a <b>getMetadata</b> method that lets you define the metadata for the action, function or CRUD request you want to execute. This is the same object that you pass in the <code>execute</code> method. For information about the object, see <a href="execute.md">execute</a>.</li>
74+
<li>objects where each object is an action, function, or CRUD request that you want to execute against the Web API endpoint. Each object exposes a <b>getMetadata</b> method that lets you define the metadata for the action, function, or CRUD request you want to execute. This is the same object that you pass in the <code>execute</code> method. For information about the object, see <a href="execute.md">execute</a>.</li>
7575
<li>Change set (an array of objects), where each object in the change set is as defined above. In this case, all the request objects specified in the change set will get executed in a transaction.</li>
7676
</ul>
7777
<p>See request examples earlier in the **Syntax** section for more information.</p>
@@ -105,7 +105,7 @@ Xrm.WebApi.online.executeMultiple(requests).then(successCallback, errorCallback)
105105

106106
On success, returns a promise containing an array of objects with the attributes specified earlier in the description of **successCallback** function.
107107

108-
### Related topics
108+
### See also
109109

110110
[Xrm.WebApi](../../xrm-webapi.md)
111111

0 commit comments

Comments
 (0)