list_script_includes
Retrieve and filter script includes from ServiceNow instances using custom parameters like active status, client callable, and search queries for efficient data management.
Instructions
List script includes from ServiceNow
Input Schema
Name | Required | Description | Default |
---|---|---|---|
params | Yes |
Input Schema (JSON Schema)
{
"$defs": {
"ListScriptIncludesParams": {
"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"
}
},
"properties": {
"params": {
"$ref": "#/$defs/ListScriptIncludesParams"
}
},
"required": [
"params"
],
"title": "list_script_includesArguments",
"type": "object"
}