About This Recipe
This recipe can be used to create an incident, update an incident, or delete an incident in ServiceNow.
To use the recipe, you must install the recipe and configure the connections within it. The recipe contains three integrations: Oracle REST ServiceNow Create Incident, Oracle REST ServiceNow Update Incident, and Oracle REST ServiceNow Delete Incident.
- When the Oracle REST ServiceNow Create Incident integration flow is triggered by a REST request with
incidentdescription
as a request parameter, the recipe creates an incident in ServiceNow. The response containing the incident number and the incident Id is returned to you. - When the Oracle REST ServiceNow Update Incident integration flow is triggered by a REST request with
incidentId
,incidentState
, andincidentUrgency
as request parameters, the recipe updates the corresponding incident details in ServiceNow. - When the Oracle REST ServiceNow Delete Incident integration flow is triggered by a REST request with
incidentId
as a request parameter, the recipe deletes an incident in ServiceNow.
Integration | Description | REST Commands and Example Payloads |
---|---|---|
Oracle REST ServiceNow Create Incident | Creates an incident in the ServiceNow instance. |
REST API Command:
Example Request Payload:
Example Response Payload:
|
Oracle REST ServiceNow Update Incident | Updates an incident in the ServiceNow instance. |
REST API Command:
Example Request Payload:
Note the valid values of request parameters incidentState and incidentUrgency: incidentState
incidentUrgency
Example Response Payload:
|
Oracle REST ServiceNow Delete Incident | Deletes an incident in the ServiceNow instance. |
REST API Command:
Example Request Payload:
Example Response Payload:
|