mirror of
https://github.com/LukeHagar/api-specs.git
synced 2025-12-08 20:37:48 +00:00
34 lines
1.0 KiB
YAML
34 lines
1.0 KiB
YAML
type: object
|
|
properties:
|
|
workflow_id:
|
|
type: string
|
|
format: uuid
|
|
required: true
|
|
description: The workflow the workflow action belongs to.
|
|
example: 33f072dd-13b4-41e1-8ea0-16f2a59b57c8
|
|
description:
|
|
type: string
|
|
required: true
|
|
description: The description of the workflow action.
|
|
example: Finds a profile based on selected attributes and values found in the session.
|
|
archived:
|
|
type: boolean
|
|
default: false
|
|
description: If the workflow action is archived or not.
|
|
example: false
|
|
ne_attribute_ids:
|
|
type: array
|
|
required: false
|
|
description: An array of ne_attribute_ids.
|
|
example: ["33f072dd-13b4-41e1-8ea0-16f2a59b57c8"]
|
|
handle_type:
|
|
type: string
|
|
required: false
|
|
enum: [session, attribute]
|
|
description: The handle type for what should happen if an existing profile is found.
|
|
example: session
|
|
handle_id:
|
|
type: string
|
|
required: false
|
|
description: The handle id. When handle type is session, this is the session id.
|
|
example: 33f072dd-13b4-41e1-8ea0-16f2a59b57c8 |