The GetIdentityTemplateDataContract
activity can be used to get the DataContract using IdentityId
. This activity is available from version 8.2.
Input Data
The following input data can be configured for the activity.
IdentityId
The identifier of the Identity.
Output Data
Result
A IdentityTemplateDataContract
with the following definition:
/// <summary></summary> [DataMember] public string IdentityType { get; set; } /// <summary></summary> [DataMember] public string TargetSystem { get; set; } /// <summary></summary> [DataMember] public string TargetNetwork { get; set; } /// <summary></summary> [DataMember] public string UserId { get; set; } /// <summary></summary> [DataMember] public Dictionary<string, object> Attributes { get; set; } /// <summary></summary> [DataMember] public DateTime ValidFrom { get; set; } /// <summary></summary> [DataMember] public DateTime? ValidTo { get; set; } /// <summary> /// This is a dummy property, it is used because WCF does not handle the knowntype-attributes /// without it see:https://social.msdn.microsoft.com/Forums/vstudio/en-US/27dfcf47-b2dd-4ef8-a49c-3113bf4e9497/known-type-wcf-dictionarystringobject-int?forum=wcf /// </summary> [DataMember] public object UsedForKnownTypeSerializationObject { get; set; }