ServiceNowTableAPI2
Allows you to perform create, read, and update operations on the any table in ServiceNow.
Base URL: /domains/servicenow/tableapi2
Version: v1
Summary
Path | Operation | Description |
---|---|---|
/table/{tableName}/{sysId}* | GET | Retrieve a record |
PUT | Modify a record |
Paths
GET /table/{tableName}/{sysId}*
Retrieves one incident per call based on the unique system identifier. The 4 query parameters will modify the response.
tableName | Which table | path | string | |
sysId | The unique idenitifer | path | string | |
sysparm_display_value | Return the display value (true), actual value (false), or both (all) for reference fields (default: false) | query | string | |
sysparm_exclude_reference_link | True to exclude Table API links for reference fields (default: false) | query | string | |
sysparm_suppress_pagination_header | True to suppress pagination header (default:false) | query | string | |
sysparm_fields | A comma-separated list of fields to return in the response | query | string | |
sysparm_view | Render the response according to the specified UI view (overridden by sysparm_fields) | query | string |
- 200 OK
-
OK
PUT /table/{tableName}/{sysId}*
tableName | Which table | path | string | |
sysId | The unique idenitifer | path | string | |
sysparm_display_value | Return the display value (true), actual value (false), or both (all) for reference fields (default: false) | query | string | |
sysparm_exclude_reference_link | True to exclude Table API links for reference fields (default: false) | query | string | |
sysparm_fields | A comma-separated list of fields to return in the response | query | string | |
sysparm_input_display_value | True to set raw value of input fields (default: false) | query | string | |
sysparm_suppress_auto_sys_field | True to suppress auto generationi of system fields (default: false) | query | string | |
sysparm_view | Render the response according to the specified UI view (overridden by sysparm_fields) | query | string |
- 200 OK
-
OK