er_record_list
Retrieve and manage records linked to a specific Edge Routine by specifying its name, page number, page size, and optional search keyword for precise filtering and pagination.
Instructions
List all records associated with a specific Edge Routine (ER).
Input Schema
Name | Required | Description | Default |
---|---|---|---|
Name | Yes | The name of the routine | |
PageNumber | No | The page number of the records | |
PageSize | No | The page size of the records | |
SearchKeyWord | No | The search key word of the records |
Input Schema (JSON Schema)
{
"properties": {
"Name": {
"description": "The name of the routine",
"type": "string"
},
"PageNumber": {
"description": "The page number of the records",
"type": "number"
},
"PageSize": {
"description": "The page size of the records",
"type": "number"
},
"SearchKeyWord": {
"description": "The search key word of the records",
"type": "string"
}
},
"required": [
"Name"
],
"type": "object"
}