Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Deletes a table record.
Syntax
Xrm.WebApi.deleteRecord(entityLogicalName, id).then(successCallback, errorCallback);
Parameters
Name | Type | Required | Description |
---|---|---|---|
entityLogicalName |
String | Yes | The table logical name of the record you want to delete. For example: account . |
id |
String | Yes | GUID of the table record you want to delete. |
successCallback |
Function | No | A function to call when a record is deleted. See Return Value |
errorCallback |
Function | No | A function to call when the operation fails. An object with the following properties is passed: - errorCode : Number. The error code as a positive decimal number. For example, the error code documented as 0x80040333 will be returned as 2147746611 .- message : String. An error message describing the issue. |
Return Value
On success, returns a promise object to the successCallback
with the following properties:
Name | Type | Description |
---|---|---|
entityType |
String | The table logical name of the record. |
id |
String | GUID of the record. |
name |
String | Name of the record. |
Examples
These examples use some of the same request objects as demonstrated in Update and delete tables using the Web API to define the data object for updating an entity record.
Deletes an account with record ID = 5531d753-95af-e711-a94e-000d3a11e605.
Xrm.WebApi.deleteRecord("account", "5531d753-95af-e711-a94e-000d3a11e605").then(
function success(result) {
console.log("Account deleted");
// perform operations on record deletion
},
function (error) {
console.log(error.message);
// handle error conditions
}
);