Click or drag to resize

IIdentityApi.SetClaimForUserSession Method

Update the claim set of the given UserSession and this update will affect to the access token right after
Example
C#
var identityApi = ctx.Use<IIdentityApi>();
identityApi.SetClaimForUserSession("00000000-0000-0000-0000-000000000000", "CPR", "123456789");

Namespace: Casewhere.Runtime.DSL.Api
Assembly: Casewhere.Runtime (in Casewhere.Runtime.dll) Version: 2.8.5.0
Syntax
C#
void SetClaimForUserSession(
	Guid userSessionId,
	string type,
	params string[] values
)

Parameters

userSessionId  Guid
type  String
Claim type
values  String[]
Claim values
See Also