How can i promote an existing incident to MAJOR Incident via Rest API PUT call
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-21-2023 10:21 PM - edited 11-21-2023 11:20 PM
I have an existing Incident in my instance
How can i promote an existing incident via Rest API PUT call
2 REPLIES 2
Community Alums
Not applicable
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-21-2023 10:25 PM
Hi @Raunak kapoor2 ,
Use the REST API Explorer to send the following request:
PUT https://instance.service-now.com/api/now/v1/table/incident/{sys_id}?sysparm_exclude_ref_link=trueProcedure
- In the top-left of the REST API Explorer, click Modify a record (PUT) or Update a record (PATCH).
- In the Path Parameters section, select the Incident (incident) table.
- In the sys_id field, enter the sys_id of the record you created.
- In the Request Body section, click Add a field.
- Select the Short description field and specify a new value.
- Click Send.
- Verify that the Response Body contains the updated short_description value.
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-21-2023 11:20 PM
I wantto promote an incident to MAJOR incident. How do i do that ?