ServiceNow · Arazzo Workflow
ServiceNow Table Record Lifecycle
Version 1.0.0
Exercise the full Table API CRUD lifecycle — create, read, update, then delete a record.
View Spec
View on GitHub
AutomationCloud ServicesDigital WorkflowsEnterprise PlatformIT Service ManagementITSMProcessesT1Workflow AutomationWorkflowsArazzoWorkflows
Provider
Workflows
table-record-lifecycle
Create, read, update, and delete a single record in any table.
Walks a record through its full lifecycle on the Table API, creating it, retrieving it, applying an update, and removing it.
1
createRecord
createRecord
Create a new record in the target table using the supplied create field map.
2
getRecord
getRecord
Read the newly created record back by its sys_id to confirm it exists.
3
updateRecord
updateRecord
Replace the record's fields with the supplied update field map using a full PUT update.
4
deleteRecord
deleteRecord
Delete the record to complete the lifecycle. A successful delete returns no content.