Create a ServiceNow incident

Published

July 4, 2026

Create a ServiceNow incident when a data drift issue is detected during ongoing monitoring using an HTTP request workflow step.

Prerequisites

Configure workflow step for ServiceNow incident creation

  1. In the left sidebar, click Settings.

  2. Under Governance, select Workflows.

  3. Click Add Workflow:4

    • Under Workflow Target type, select Inventory Record.
    • Enter a Title and a Description for the workflow.
    • Select the Record Type this workflow applies to.
    • Under Workflow Start, select when the workflow should be initiated.
    • Under Workflow Expected Duration, define the SLA for the workflow based on the start date in days, weeks, months, or years.
  4. Click Save Draft to save your blank workflow.

  1. Configure the rest of your workflow steps, then drag and drop an HTTP Request step5 onto the canvas and connect it to your workflow.

  2. Double-click the step to open the Configure HTTP Request modal.

  1. Configure the required fields for ServiceNow,6 replacing the placeholder values with your own:

    • URLhttps://yourinstance.service-now.com/api/now/table/incident
    • Method — POST
    • Headers — Add:
      • Content-Type: application/json
      • Authorization: Basic {{ServiceNow Credentials}}
    NoneUse webhook secrets for credentials

    Instead of entering credentials in plaintext, use a webhook secret: Basic {{secret:servicenow_creds}}. To learn more, refer to Manage secrets.

    • Body Type — JSON
    • Body — Use the following JSON payload:
    {
      "short_description": "Data drift issue detected: {{Model Name}}",
      "description": "A potential issue has been identified for model {{Model Name}} (link: [{{Model URL}}]({{Model URL}})). Please review the ongoing monitoring documentation in ValidMind.",
      "urgency": "2",
      "category": "Model Risk"
    }
  2. Click Update Step to save your configuration.

6 

Screenshot of the HTTP request step configured to create a ServiceNow incident, showing the required fields described in step 12.

Create a ServiceNow incident
  1. Configure and link any additional workflow steps.7

  2. Save your workflow to apply your changes.

  3. Publish your workflow to make it available for use.

The HTTP request to create the ServiceNow incident is sent when the workflow executes the step.