er_record_delete
Remove a specific record linked to an Edge Routine (ER) by providing its name, site ID, and record ID. This action ensures efficient record management within the ESA MCP Server.
Instructions
Delete a specified record associated with an Edge Routine (ER).
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | The name of the routine | |
recordId | No | The ID of the record | |
recordName | Yes | The name of the record | |
siteId | Yes | The ID of the site |
Input Schema (JSON Schema)
{
"properties": {
"name": {
"description": "The name of the routine",
"type": "string"
},
"recordId": {
"description": "The ID of the record",
"type": "number"
},
"recordName": {
"description": "The name of the record",
"type": "string"
},
"siteId": {
"description": "The ID of the site",
"type": "number"
}
},
"required": [
"name",
"siteId",
"recordName"
],
"type": "object"
}