Files
developer.sailpoint.com/docs/extensibility/event-triggers/available/form-submitted.md
2024-02-28 12:14:29 -05:00

1.7 KiB

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, description, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords description slug tags
form-submitted Form Submitted Form Submitted Form Submitted formSubmitted
event
trigger
form
submitted
available
Triggered when a form is submitted. /extensibility/event-triggers/triggers/form-submitted
Event Triggers
Available Event Triggers
Fire and Forget

Event Context

The Form Submitted events occur after a user has submitted a custom form.

Some uses cases for this trigger include the following:

  • Immediately take actions based on data submitted in the form

This is an example input from this trigger:

{
  "submittedAt": "2020-06-29T22:01:50.474Z",
  "tenantId": "2c9180845d1edece015d27a9717c3e19",
  "formInstanceId": "2c9180835d2e5168015d32f890ca1582",
  "formDefinitionId": "2c9180835d2e5168015d32f890ca1581",
  "name": "Open Service Request",
  "createdBy": {
    "type": "WORKFLOW_EXECUTION",
    "id": "2c9180845d1edece015d27a9717c3e19"
  },
  "submittedBy": {
    "type": "IDENTITY",
    "id": "2c9180845d1edece015d27a9717c3e19",
    "name": "Neil McGlennon"
  },
  "formData": {
    "department": "IT",
    "requestType": "New Laptop",
    "laptop": "New Laptop type for Engineer",
    "comments": "My laptop is running slow, and I need to get a shiny new laptop to get my work done.  Thanks!"
  }
}
  • formData contains the information provided by the user who submitted the form. The attributes of formData will vary depending on the form definition.