Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Available from version

7.2

Workflow Type Name (Id)

Provision, 33

Configured on

Identity Provision Configuration

Description

Used to do provisioning of identity by workflow

Data structure

Code Block
"Data": {
          "IdentityId": uint
},

Example

Code Block
"Data": {
          "IdentityId": 2410
        },

C# class name

ProvisionIdentityWorkflowInput

OUTPUT

Workflow returns data about newly provisioned identity

OUTPUT Data structure

Code Block
{
    "ObjectId": string,
    "Password": string
},

OUTPUT C# class name

ProvisionIdentityWorkflowOutput

IdentityPasswordChanged

Whenever the password change API endpoint is executed, either from the Admin UI or an external system, the IdentityPasswordChanged workflow will be executed.

Available from version

8.0

Workflow Type Name (Id)

IdentityPasswordChanged, 35

Configured on

Identity type

Description

Before core identity is deleted

Data structure

Code Block
"WorkflowInput": {
    "Data": {
      "IdentityId": uint,
      "Password": byte[]
    }
  }

Example

Code Block
"WorkflowInput": {
    "Data": {
      "IdentityId": 23,
      "Password": "eyJtZW51IjogewogICJpZCI6ICJmaWxlIiwKICAidmFsdW"
    }
  }

C# class name

IdentityPasswordChangedWorkflowInput