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
* @param {Function} successCallback - The function that will be passed through and be called by a successful response.
2105
+
* @param {Function} errorCallback - The function that will be passed through and be called by a failed response.
2106
+
* @param {boolean} [mergeLabels] - Sets MSCRM.MergeLabels header that controls whether to overwrite the existing labels or merge your new label with any existing language labels. Default value is false.
* Sends an asynchronous request to retrieve a specific entity definition.
2124
+
*
2125
+
* @param {string} entityKey - The Entity MetadataId or Alternate Key (such as LogicalName).
2126
+
* @param {Function} successCallback - The function that will be passed through and be called by a successful response.
2127
+
* @param {Function} errorCallback - The function that will be passed through and be called by a failed response.
2128
+
* @param {Array} [select] - Use the $select system query option to limit the properties returned.
2129
+
* @param {string|Array} [expand] - A String or Array of Expand Objects representing the $expand Query Option value to control which related records need to be returned.
* Sends an asynchronous request to update an attribute.
2187
+
*
2188
+
* @param {string} entityKey - The Entity MetadataId or Alternate Key (such as LogicalName).
2189
+
* @param {Object} attributeDefinition - Object that describes the attribute.
2190
+
* @param {Function} successCallback - The function that will be passed through and be called by a successful response.
2191
+
* @param {Function} errorCallback - The function that will be passed through and be called by a failed response.
2192
+
* @param {string} [attributeType] - Use this parameter to cast the Attribute to a specific type.
2193
+
* @param {boolean} [mergeLabels] - Sets MSCRM.MergeLabels header that controls whether to overwrite the existing labels or merge your new label with any existing language labels. Default value is false.
* Sends an asynchronous request to retrieve attribute metadata for a specified entity definition.
2219
+
*
2220
+
* @param {string} entityKey - The Entity MetadataId or Alternate Key (such as LogicalName).
2221
+
* @param {Function} successCallback - The function that will be passed through and be called by a successful response.
2222
+
* @param {Function} errorCallback - The function that will be passed through and be called by a failed response.
2223
+
* @param {string} [attributeType] - Use this parameter to cast the Attributes to a specific type.
2224
+
* @param {Array} [select] - Use the $select system query option to limit the properties returned.
2225
+
* @param {string} [filter] - Use the $filter system query option to set criteria for which attribute definitions will be returned.
2226
+
* @param {string|Array} [expand] - A String or Array of Expand Objects representing the $expand Query Option value to control which related records need to be returned.
* Sends an asynchronous request to retrieve a specific attribute metadata for a specified entity definition.
2251
+
*
2252
+
* @param {string} entityKey - The Entity MetadataId or Alternate Key (such as LogicalName).
2253
+
* @param {string} attributeKey - The Attribute Metadata id.
2254
+
* @param {Function} successCallback - The function that will be passed through and be called by a successful response.
2255
+
* @param {Function} errorCallback - The function that will be passed through and be called by a failed response.
2256
+
* @param {string} [attributeType] - Use this parameter to cast the Attribute to a specific type.
2257
+
* @param {Array} [select] - Use the $select system query option to limit the properties returned.
2258
+
* @param {string|Array} [expand] - A String or Array of Expand Objects representing the $expand Query Option value to control which related records need to be returned.
0 commit comments