route_delete
Remove a specified route for an Edge Routine by providing the site and config IDs, ensuring streamlined management of ESA services.
Instructions
Delete a specified route associated with an Edge Routine (ER).
Input Schema
Name | Required | Description | Default |
---|---|---|---|
configId | Yes | The ID of the config | |
siteId | Yes | The ID of the site |
Input Schema (JSON Schema)
{
"properties": {
"configId": {
"description": "The ID of the config",
"type": "number"
},
"siteId": {
"description": "The ID of the site",
"type": "number"
}
},
"required": [
"siteId",
"configId"
],
"type": "object"
}