A ServiceNow Record object representing the newly created record.
servicenow record
Examples
Create a new incident in the 'incident' table with the specified attributes.
create a json
use the above as the incident
set the incident's "short_description" to "Test Incident"
set the incident's "urgency" to "1"
set the incident's "impact" to "1"
create the incident in "incident"
to delete some records
Deletes records from ServiceNow using batch processing.
...
use the above as the records
delete the records
retrieve some records from servicenow
the table name is "incident"
retrieve some records from servicenow whose number is "INC0010001"
the table name is "incident"
the date is "2024-02-25T12:30:00Z"
get the date as a datetime
use the above as the target
retrieve some records from servicenow whose "sys_created_on" is greater than the target
the table name is "incident"
retrieve some records from servicenow
the table name is "incident"
the limit is "5"
...
use the above as the record
set the record's "short_description" to "Updated Incident"
set the record's urgency to "2"
set the record's impact to "2"
update the record