Attempting to find any way (tried endless combinations) to default a value from the initial journey step 1 SelfAssertedAttributeProvider (api.selfasserted) and output into claims bag for downstream usage
OutputClaim as default value
<OutputClaim ClaimTypeReferenceId="EnvironmentId" DefaultValue="12345" AlwaysUseDefaultValue="true" />
I want to use it from the claim bag in the next orchestration step's "SignUp" SelfAssertedAttributeProvider (api.localaccountsignup)
- InputClaim
- So that I can ultimately "output" it to the SelfAssertedAttributeProvider ValidationTechnicalProfile as a RestfulProvider as InputClaim to the REST API
I have tried:
SelfAssertedAttributeProvider ValidationTechnicalProfile InputClaim/OutputClaim
<InputClaimClaimTypeReferenceId="EnvironmentId" />
<OutputClaim ClaimTypeReferenceId="EnvironmentId" />
DefaultSSOSessionProvider PersistedClaim
<PersistedClaim ClaimTypeReferenceId="EnvironmentId" />
Most interesting, I have this working in a completely different policyset -notable difference is I am trying to use the new policyset that uses DisplayClaim and instead of calling REST api via SelfAssertedAttributeProvider ValidationProfile - I am using the input directly to rest via ClaimsExchange step in journey.