IIdentityApiSetClaimForSPIdPSession Method

Update the claim set of the given SPIdPSession and this update will affect to the access token later

Example

C#
var identityApi = ctx.Use<IIdentityApi>();
identityApi.SetClaimForSPIdPSession("00000000-0000-0000-0000-000000000000", "CPR", "123456789");

Definition

Namespace: Casewhere.Runtime.DSL.Api
Assembly: Casewhere.Runtime (in Casewhere.Runtime.dll) Version: 2.9.8.6
C#
void SetClaimForSPIdPSession(
	Guid spIdPSessionId,
	string type,
	params string[] values
)

Parameters

spIdPSessionId  Guid
type  String
Claim type
values  String
Claim values

See Also