Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Current »

Introduction

A representation is an entity that holds the trust between two Core Identities. On that type, various workflows can be registered. This document describes the available workflow types and their specific input data.

AfterRepresentationCreate

This workflow will be executed each time, after a a new representation was created. The representations are created in the state Pending by default, so you can account for the confirmation process in this workflow.

Workflow Type Name (Id)

AfterRepresentationCreate , 26

Configured on

Core identity type

Description

Whenever a core identity representation is created

Data structure

"Data": {
  id : uint,
  displayName : string,
  typeName : string,
  inviter: uint,
  comment: string,
  representationId: uint
}

Example

"Data": {
          "Comment": null,
          "Inviter": 13,
          "RepresentationId": 5,
          "Id": 13,
          "DisplayName": "Wiwoldi Wawrinka",
          "TypeName": "iTsense.Moving.Backend.Services.DmcoreService.Adapters.NHibernate.Servicedmcore.CoreIdentity"
}

C# class name

AfterRepresentationCreateWorkflowInput

  • No labels