Tools
ServiceNow
Create, read, update, and delete ServiceNow records
Integrate ServiceNow into your workflow. Create, read, update, and delete records in any ServiceNow table including incidents, tasks, change requests, users, and more.
Create a new record in a ServiceNow table
| Parameter | Type | Required | Description |
|---|
instanceUrl | string | Yes | ServiceNow instance URL (e.g., https://instance.service-now.com\) |
username | string | Yes | ServiceNow username |
password | string | Yes | ServiceNow password |
tableName | string | Yes | Table name (e.g., incident, task, sys_user) |
fields | json | Yes | Fields to set on the record (JSON object) |
| Parameter | Type | Description |
|---|
record | json | Created ServiceNow record with sys_id and other fields |
metadata | json | Operation metadata |
Read records from a ServiceNow table
| Parameter | Type | Required | Description |
|---|
instanceUrl | string | Yes | ServiceNow instance URL (e.g., https://instance.service-now.com\) |
username | string | Yes | ServiceNow username |
password | string | Yes | ServiceNow password |
tableName | string | Yes | Table name |
sysId | string | No | Specific record sys_id |
number | string | No | Record number (e.g., INC0010001) |
query | string | No | Encoded query string (e.g., "active=true^priority=1") |
limit | number | No | Maximum number of records to return |
fields | string | No | Comma-separated list of fields to return |
| Parameter | Type | Description |
|---|
records | array | Array of ServiceNow records |
metadata | json | Operation metadata |
Update an existing record in a ServiceNow table
| Parameter | Type | Required | Description |
|---|
instanceUrl | string | Yes | ServiceNow instance URL (e.g., https://instance.service-now.com\) |
username | string | Yes | ServiceNow username |
password | string | Yes | ServiceNow password |
tableName | string | Yes | Table name |
sysId | string | Yes | Record sys_id to update |
fields | json | Yes | Fields to update (JSON object) |
| Parameter | Type | Description |
|---|
record | json | Updated ServiceNow record |
metadata | json | Operation metadata |
Delete a record from a ServiceNow table
| Parameter | Type | Required | Description |
|---|
instanceUrl | string | Yes | ServiceNow instance URL (e.g., https://instance.service-now.com\) |
username | string | Yes | ServiceNow username |
password | string | Yes | ServiceNow password |
tableName | string | Yes | Table name |
sysId | string | Yes | Record sys_id to delete |
| Parameter | Type | Description |
|---|
success | boolean | Whether the deletion was successful |
metadata | json | Operation metadata |
- Category:
tools
- Type:
servicenow