mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-09 20:37:47 +00:00
28 lines
817 B
YAML
28 lines
817 B
YAML
type: object
|
|
description: The map of steps that the workflow will execute.
|
|
properties:
|
|
start:
|
|
type: string
|
|
description: The name of the starting step.
|
|
example: "Send Email Test"
|
|
steps:
|
|
type: object
|
|
description: One or more step objects that comprise this workflow. Please see the Workflow documentation to see the JSON schema for each step type.
|
|
additionalProperties: true
|
|
example: {
|
|
"Send Email": {
|
|
"actionId": "sp:send-email",
|
|
"attributes": {
|
|
"body": "This is a test",
|
|
"from": "sailpoint@sailpoint.com",
|
|
"recipientId.$": "$.identity.id",
|
|
"subject": "test"
|
|
},
|
|
"nextStep": "success",
|
|
"selectResult": null,
|
|
"type": "action"
|
|
},
|
|
"success": {
|
|
"type": "success"
|
|
}
|
|
} |