Versions Compared

Key

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

...

Available from version

7.2

Workflow Type Name (Id)

AfterProvision, 34

Configured on

Identity Provision Configuration

Description

After identity is provisioned

Data structure

Code Block
"Data": {
          "IdentityId": uint,
          "Password": string //byte representation of password
        },

Example

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

C# class name

AfterProvisionIdentityWorkflowInput

Deprovisioning

On all identity provisioning configurations, there is the possibility to register an Deprovisioning workflow. This workflow will be executed each time an identity is being deprovisioned.

Available from version

7.0

Workflow Type Name (Id)

Deprovisioning, 37

Configured on

Core identity

Description

When all roles and resources are removed from core identity

Data structure

Code Block
"IdentityWorkflowInput": {
    IdentityId: uint
  }

Example

Code Block
"IdentityWorkflowInput": {
    IdentityId: 3290
  }

C# class name

IdentityWorkflowInput

IdentityProvision

On all identity provisioning configurations, there is the possibility to register an IdentityProvision workflow. This workflow will be executed in order to provision an identity. If this workflow is configured, you need to handle the provisioning directly in the workflow by either executing the appropriate actions in the target system, or by calling the provision identity activity. If you simply want to extend the behaviour, after the identity has been provisioned, use the AfterIdentityProvision workflow.

...