CreateRecord
Inserts a new record into a specified ServiceNow table.
Input
| Name | Type | Required | Description |
| TableName | String | True | Specifies the name of the ServiceNow table where the new record will be created, such as 'incident' or 'task'. |
| Payload | String | True | Provides a JSON object containing the data fields and values to insert into the specified table, ensuring it follows the table's schema and required field structure. |
Result Set Columns
| Name | Type | Description |
| Success | Boolean | Indicates whether the record creation operation completed successfully and the new entry was added to the target table. |
| SysId | String | Returns the system identifier (sys_id) assigned to the newly created record in ServiceNow after successful execution. |