Task Parameters

<< Click to Display Table of Contents >>

Raynet One Data Hub > 2026.2 > Connectors > Alphabetic Connector List > ServiceNow > Connector Parameters 

Task Parameters

The available task parameters depend on the selected Task Type. Both task types share the Task Type parameter, while the remaining parameters are specific to each type.

 

Task Type

Determines which query is executed. Selecting License queries a predefined set of license-related tables. Selecting Table runs a customizable query against a specific ServiceNow table.

 

Technical Name

type

Category

Functional

Type

Select

Options

table – Run customizable queries

license – Get license data

Default Value

n/a

 

Parameters for Task Type: License

 

Ignore Errors

When enabled, the task continues running even if access to one or more license tables fails due to insufficient permissions. A warning is logged for each inaccessible table, but the task does not abort. When disabled (default), the task stops with an error if any required table cannot be accessed.

 

Technical Name

ignore_errors

Category

Functional

Type

Boolean

Default Value

false

Applies To

Task Type: License

 

Parameters for Task Type: Table

 

Table Name

The name of the ServiceNow table to query. This parameter is required when the Task Type is set to Table.

 

Technical Name

table_name

Category

Functional

Type

String

Default Value

n/a

Example Values

incident

cmdb_ci

 

Fields to Include

A comma-separated list of field names to include in the query results. When left empty, all available fields are returned.

 

Technical Name

sysparm_fields

Category

Functional

Type

String

Default Value

All fields (empty)

Example Values

number,short_description,assigned_to,state

 

Display Values

When enabled, the connector returns display values (human-readable labels) instead of actual database values for reference fields. This applies to fields that reference other records.

 

Technical Name

sysparm_display_value

Category

Functional

Type

Boolean

Default Value

false

Applies To

Task Type: Table

 

Exclude Reference Links

When enabled, the connector omits reference link fields from the results. This reduces the response payload when only the data values are needed.

 

Technical Name

sysparm_exclude_reference_link

Category

Functional

Type

Boolean

Default Value

false

Applies To

Task Type: Table

 

Query Filter

A ServiceNow encoded query string used to filter the returned records. Uses the ServiceNow encoded query syntax, where multiple conditions are joined with ^ (AND).

 

Technical Name

sysparm_query

Category

Functional

Type

String

Default Value

n/a (no filter applied)

Example Values

active=true^assigned_to=john.smith

 

Result Limit

The maximum number of records to return. When not set, all available records are retrieved.

 

Technical Name

result_limit

Category

Functional

Type

Integer

Default Value

No limit

Example Values

100

1000

 

Max Page Size

The maximum number of records to fetch per API request during pagination. This maps to the ServiceNow Table API parameter sysparm_limit. The default is 30. Setting an unusually large value may affect ServiceNow system performance.

 

Technical Name

max_page_size

Category

Functional

Type

Integer

Default Value

30

Example Values

50

100