route_get
Retrieve specific route details for an Edge Routine (ER) by providing site and configuration IDs, enabling efficient management and access to routing information.
Instructions
Get details of a specific 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"
}