Table operations
The Table API is how you work with records in any ServiceNow table — the bread and butter of most integrations. Each guide below walks one task from credentials to a runnable program.
All of them use the fluent modality; every operation is also available in the standard modality — see Core Concepts for the difference and when to prefer each.
Task guides
- Create a record: Insert a new record and read
back its
sys_id. - List and query records: Filter server-side with an encoded query and read fields from the results.
- Update a record: Change specific fields without touching the rest of the record.
- Delete a record: Remove a record by
sys_id.
Related
- Query builder: Compose encoded queries from typed conditions instead of writing them by hand.
- Pagination: Iterate past the first page of a list response.
- Table API reference: Every verb with all parameters, in both modalities.