list_script_includes
Retrieve and filter script includes from a ServiceNow instance using customizable parameters such as active status, client callability, and search queries, with pagination support for efficient data management.
Instructions
List script includes from ServiceNow
Input Schema
Name | Required | Description | Default |
---|---|---|---|
active | No | Filter by active status | |
client_callable | No | Filter by client callable status | |
limit | No | Maximum number of script includes to return | |
offset | No | Offset for pagination | |
query | No | Search query for script includes |
Input Schema (JSON Schema)
{
"description": "Parameters for listing script includes.",
"properties": {
"active": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
],
"default": null,
"description": "Filter by active status",
"title": "Active"
},
"client_callable": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
],
"default": null,
"description": "Filter by client callable status",
"title": "Client Callable"
},
"limit": {
"default": 10,
"description": "Maximum number of script includes to return",
"title": "Limit",
"type": "integer"
},
"offset": {
"default": 0,
"description": "Offset for pagination",
"title": "Offset",
"type": "integer"
},
"query": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Search query for script includes",
"title": "Query"
}
},
"title": "ListScriptIncludesParams",
"type": "object"
}