Versions Compared

Key

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

...

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

OUTPUTTBD

Workflow returns data about newly provisioned identity

OUTPUT Data structure

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

OUTPUT C# class name

ProvisionIdentityWorkflowOutput

AfterIdentityProvision

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

...