site_route_list
Retrieve and filter all routes linked to a specific site using site ID, route name, pagination, and page size for streamlined route management.
Instructions
List all routes associated with a specific site.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
pageNumber | No | The page number of the routes | |
pageSize | No | The page size of the routes | |
routeName | No | The name of the route, use to filter list results | |
siteId | Yes | The ID of the site |
Input Schema (JSON Schema)
{
"properties": {
"pageNumber": {
"description": "The page number of the routes",
"type": "number"
},
"pageSize": {
"description": "The page size of the routes",
"type": "number"
},
"routeName": {
"description": "The name of the route, use to filter list results",
"type": "string"
},
"siteId": {
"description": "The ID of the site",
"type": "number"
}
},
"required": [
"siteId"
],
"type": "object"
}