Versions Compared

Key

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

...

Available from version

9.1

Workflow Type Name (Id)

AfterCreate, 2016

Configured on

QualityOfRegistrationCheckResult

Description

After QoR check is successfully finished - there is a workflow allowing to load check details (for example Fidentity files)

Data structure

Code Block
"Data": {
  "CoreIdentityId": uint, 
  "CheckId": uint,
  "Details": string //text holding additional information. Serialized to JSON.
}
where Details for FIdentity check {
  "Type": "FIdentity", 
  "ExtId": string
}

Example

Code Block
"Data": {
  "CoreIdentityId": 13, 
  "CheckId": 1,
  "Details": "JSON here"
}

C# class name

QualityOfRegistrationResultAfterCreateWorkflowInput

...