Use the REST API Explorer
In this tutorial you will use the REST API Explorer to test the ServiceNow REST APIs.
The REST API Explorer allows you to discover ServiceNow REST APIs, quickly construct and execute requests, and view responses from ServiceNow REST APIs within your browser. Before beginning, ensure that your user account has the rest_api_explorer role. This role is required to complete the example procedures. For additional information on assigning roles, see Managing roles.
- Access the REST API Explorer
View available REST API resources using the REST API Explorer. - Create an incident record
Use a POST request to create a new record. - Read the inserted incident
Use a GET request to view a record. - Retrieve existing incidents
Use a GET request to view existing incident records. - Update the incident
Update the incident record using either a PUT or PATCH function. - Delete the incident
Delete the incident using a DELETE request. - Explore the REST API for a table
You can explore the REST API for a table directly from that table. Explore the API using the REST API Explorer to quickly construct and test REST requests for that table. - Export to OpenAPI specification
Export a REST API as an OpenAPI specification to import it into another web services tool.
Parent Topic:REST APIs