- /
-
- Automations /
- Inbound /
- REST /
- Table API
Table API
CRUD operations via REST for any table
Last modified 2026-03-16
Jace Benson
Table of content
The Table API provides REST endpoints to interact with any ServiceNow table.
Endpoints
| Method | Endpoint | Purpose |
|---|---|---|
| GET | /api/now/table/{tableName}/{sys_id} |
Get single record |
| GET | /api/now/table/{tableName} |
Get multiple records |
| POST | /api/now/table/{tableName} |
Create record |
| PATCH | /api/now/table/{tableName}/{sys_id} |
Update record |
| DELETE | /api/now/table/{tableName}/{sys_id} |
Delete record |
Common Query Parameters
sysparm_query- Encoded query stringsysparm_limit- Max records to returnsysparm_fields- Comma-separated field names to returnsysparm_display_value- Return display values (true/false/all)
REST API Explorer
Use System Web Services > REST > REST API Explorer to test endpoints directly in the browser without external tools.