Versions Compared

Key

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

...

This event is thrown when a user gives consent to a client.

Event Information

Value

Available from version

Release 6.2103.xx - Moléson

Event ID

19

Event Data Contract

UserConsentGiven

Event Data

The following data is contained in the 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,
  ClientIdentifier: string,
  ClientDisplayName : string,
  ApplicationDisplayName : string,
  Scopes: ScopeDataContract[],
  RememberConsent: bool
}

where ScopeDataContract is
{
  Name : string,
  TranslatedName : string, //can be blank if not available
  TranslatedDescription : string //can be blank if not available
}

...