2
votes

I am working on custom invitation policy for user so that they can register with the inviation link. I have created the required Policies to make a custom policy.below is the list

  • Base_Extensions.XML
  • Base.XML
  • Invitation.XML

I have followed Azure AD B2C pre-populate a custom attribute in the SignUp policy to make a custom policy.

Actually this was the answer to my previous question Azure Ad b2c : Add new member user with invitation.

All the above policies are uploaded successfully. but When I try to run the invitation policy. I get the error.

enter image description here

Please help me to resolve this. I am totally blind that how to resolve this.

1

1 Answers

0
votes

The above error can be caused by a claim type, which is referenced as an output claim by a self-asserted technical profile, that doesn't have an input type:

e.g.:

<ClaimType Id="extension_MyCustomClaim">
  <DisplayName>My Custom Claim</DisplayName>
  <DataType>string</DataType>
  <UserInputType>TextBox</UserInputType>
</ClaimType>

The <ClaimType /> element might be missing the <UserInputType /> element.