You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/README.md
+7-6Lines changed: 7 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -358,7 +358,7 @@ data | `Object` or `ArrayBuffer` / `Buffer` (for node.js) | `create`, `update`,
358
358
duplicateDetection | `boolean` | `create`, `update`, `upsert` | **D365 Web API v9+** Boolean that enables duplicate detection. [More Info](https://docs.microsoft.com/en-us/dynamics365/customer-engagement/developer/webapi/update-delete-entities-using-web-api#check-for-duplicate-records)
359
359
expand | `Expand[]` | `retrieve`, `retrieveMultiple`, `create`, `update`, `upsert` | An array of `Expand` Objects (described below the table) representing the $expand OData System Query Option value to control which related records are also returned.
360
360
fetchXml | `string` | `fetch`, `fetchAll` | Property that sets FetchXML - a proprietary query language that provides capabilities to perform aggregation.
361
-
fieldName | `string` | `uploadFile`, `downloadFile`, `deleteRequest` | **D365 Web API v9.1+** Use this option to specify the name of the file attribute in Dynamics 365. [More Info](https://docs.microsoft.com/en-us/powerapps/developer/common-data-service/file-attributes)
361
+
fieldName | `string` | `uploadFile`, `downloadFile`, `deleteRecord` | **D365 Web API v9.1+. Deprecated, use `property` instead** Use this option to specify the name of the file attribute in Dynamics 365. [More Info](https://docs.microsoft.com/en-us/powerapps/developer/common-data-service/file-attributes)
362
362
fileName | `string` | `uploadFile` | **D365 Web API v9.1+** Specifies the name of the file
363
363
filter | String | `retrieve`, `retrieveMultiple`, `retrieveAll`, `callFunction` | Use the $filter system query option to set criteria for which entities will be returned.
364
364
functionName | `string` | `callFunction` | **Deprecated from v2.1.3** Use `name` instead. Name of a D365 Web Api function.
@@ -382,6 +382,7 @@ pageNumber | `number` | `fetch` | Sets a page number for Fetch XML request ONLY!
382
382
pagingCookie | `string` | `fetch` | Sets a paging cookie for Fetch XML request ONLY!
partitionId | `string` | `create`, `update`, `upsert`, `delete`, `retrieve`, `retrieveMultiple` | Sets a unique partition key value of a logical partition for non-relational custom entity data stored in NoSql tables of Azure heterogenous storage. [More Info](https://docs.microsoft.com/en-us/power-apps/developer/data-platform/webapi/azure-storage-partitioning)
385
+
property | `string` | `uploadFile`, `downloadFile`, `deleteRecord` | `v2.1.6+`**D365 Web API v9.1+.** Use this option to specify the name of the column or of the file attribute in Dynamics 365. [More Info](https://docs.microsoft.com/en-us/powerapps/developer/common-data-service/file-attributes)
385
386
queryParams | `string[]` | All | Custom query parameters. Can also be used to set the [parameter aliases](https://docs.microsoft.com/en-us/power-apps/developer/data-platform/webapi/query-data-web-api#use-parameter-aliases-with-system-query-options) for "$filter" and "$orderBy". **Important!** These parameters ARE NOT URI encoded!
386
387
returnRepresentation | `boolean` | `create`, `update`, `upsert` | Sets Prefer header request with value "return=representation". Use this property to return just created or updated entity in a single request.
387
388
savedQuery | `string` | `retrieve` | A String representing the GUID value of the saved query.
/**Sets Prefer header with value "odata.include-annotations=" and the specified annotation.Annotations provide additional information about lookups, options sets and other complex attribute types. */
1260
1260
includeAnnotations?: string;
1261
-
/**A String representing the name of a single - valued navigation property.Useful when needed to retrieve information about a related record in a single request. */
1261
+
/**A String representing the name of a single - valued navigation property.Useful when needed to retrieve information about a related record in a single request. */
1262
1262
navigationProperty?: string;
1263
1263
/**A String representing navigation property's Primary Key (GUID) or Alternate Key(s). (For example, to retrieve Attribute Metadata). */
/**Casts the AttributeMetadata to a specific type. (Used in requests to Attribute Metadata). */
1295
1295
metadataAttributeType?: string;
1296
-
/**A String representing the name of a single - valued navigation property.Useful when needed to retrieve information about a related record in a single request. */
1296
+
/**A String representing the name of a single - valued navigation property.Useful when needed to retrieve information about a related record in a single request. */
1297
1297
navigationProperty?: string;
1298
1298
/**A String representing navigation property's Primary Key (GUID) or Alternate Key(s). (For example, to retrieve Attribute Metadata). */
/**Casts the AttributeMetadata to a specific type. (Used in requests to Attribute Metadata). */
1354
1359
metadataAttributeType?: string;
1355
-
/**A String representing the name of a single - valued navigation property.Useful when needed to retrieve information about a related record in a single request. */
1360
+
/**A String representing the name of a single - valued navigation property.Useful when needed to retrieve information about a related record in a single request. */
1356
1361
navigationProperty?: string;
1357
1362
/**A String representing navigation property's Primary Key (GUID) or Alternate Key(s). (For example, to retrieve Attribute Metadata). */
/**Sets If-Match header value that enables to use conditional retrieval or optimistic concurrency in applicable requests.*/
72
72
ifmatch?: string;
73
73
/**Sets Prefer header with value "odata.include-annotations=" and the specified annotation.Annotations provide additional information about lookups, options sets and other complex attribute types. */
74
-
includeAnnotations?: string;
74
+
includeAnnotations?: string|null;
75
75
/**Sets Prefer header request with value "return=representation".Use this property to return just created or updated entity in a single request. */
76
-
returnRepresentation?: boolean;
76
+
returnRepresentation?: boolean|null;
77
77
/**Prefer header values */
78
78
prefer?: string|string[];
79
79
/**An Array(of Strings) representing the $select OData System Query Option to control which attributes will be returned. */
/**Boolean that sets the $count system query option with a value of true to include a count of entities that match the filter criteria up to 5000(per page).Do not use $top with $count! */
96
96
count?: boolean;
97
97
/**Sets the odata.maxpagesize preference value to request the number of entities returned in the response. */
98
-
maxPageSize?: number;
98
+
maxPageSize?: number|null;
99
99
/**An Array(of string) representing the order in which items are returned using the $orderby system query option.Use the asc or desc suffix to specify ascending or descending order respectively.The default is ascending if the suffix isn't applied. */
100
100
orderBy?: string[];
101
101
/**Limit the number of results returned by using the $top system query option.Do not use $top with $count! */
102
102
top?: number;
103
103
/**Sets Prefer header with value 'odata.track-changes' to request that a delta link be returned which can subsequently be used to retrieve entity changes. */
104
104
trackChanges?: boolean;
105
-
/**v.1.7.0+ Web API v9.1+ only! Use this option to specify the name of the file attribute in Dynamics 365. */
105
+
/**v.1.7.0+ Web API v9.1+ only! Use this option to specify the name of the file attribute in Dynamics 365.
106
+
* @deprecated use property
107
+
*/
106
108
fieldName?: string;
107
109
/**v.1.7.0+ Web API v9.1+ only! Specifies the name of the file */
108
110
fileName?: string;
109
111
/**v.1.7.7+ A unique partition key value of a logical partition for non-relational custom entity data stored in NoSql tables of Azure heterogenous storage. */
110
112
partitionId?: string;
111
113
/**v.1.7.7+ Additional query parameters that either have not been implemented yet or they are parameter aliases for "$filter" and "$orderBy". Important! These parameters ARE NOT URI encoded! */
0 commit comments