Versions Compared

Key

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

...

This event is thrown when a user changes (add, update, remove) any of his communication data.

Event Information

Value

Available from version

Release 6.2103.xx - Moléson

Event ID

41

Event Data Contract

UserCommunicationDataChanged

Event Data

Code Block
{
  EventOccuredUtc: DateTime,
  EntityId : string, //identity id
  EntityType : string, //always 'Identity'
  IdentityDisplayName : string,
  IdentityTypeId : uint,
  IdentityTypeName : string,
  CoreIdentityId : uint,
  CoreIdentityDisplayName : string,
  CoreIdentityTypeId : uint,
  CoreIdentityTypeName : string,
  TargetSystemId : uint,
  TargetSystemName : string,
  AttributeId : uint, //0 for TOTP
  AttributeName : string //empty for TOTP
  Operation : enum { Create, Update, Delete },
  CommunicationType : string {Email, MobileNumber, Totp},
  Value : string,
  DisplayName : string
}

...