Versions Compared

Key

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

...

On all identity provisioning configurations, there is the possibility to register an AfterIdentityProvision workflow. This workflow is executed after the identity has been provisioned.

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

...

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.

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