CreateRecord
Inserts the specified record into the target table in ServiceNow.
Input
| Name | Type | Required | Description |
| TableName | String | True | The name of the ServiceNow table where the record should be inserted (e.g., 'incident', 'task'). |
| Payload | String | True | A valid JSON object representing the data to insert into the specified table. Must be well-formed and adhere to the table schema. |
Result Set Columns
| Name | Type | Description |
| Success | Boolean | Indicates whether the operation completed successfully (true/false). |
| SysId | String | The unique system identifier (sys_id) of the newly created record in ServiceNow, if the operation is successful. |