Questions tagged [validation-technical-profile]

4 questions
1
vote
1 answer

Securing a Rest-API integrated in Custom policy in Azure AD b2c issue

I have a rest api which is being called by Azure AD B2C(through technical profile in Custom policy). I need to secure the api.But as it is being called by Azure BEFORE Authentication(basically it only needs to check if the email already exists in…
1
vote
1 answer

How to display error returned from custom REST API endpoint in a subsequent orchestration step?

Based on this question... the REST API endpoint is validating the external IDP email and is correclty returning an error back in the case the email is not valid. return Content(HttpStatusCode.Conflict, new CustomResponseContent { Version =…
0
votes
0 answers

In B2C Custom Policies, how do I pass a specific Readonly ClaimType into a TechnicalProfile?

Below are my 2 step Orchestration steps, Technicalprofiles, ClaimTransformation and ClaimType. In Step 1 of the Orchestration Step, the User sees a TextBox to enter their username. After entering their username, they can press the Continue button to…
0
votes
1 answer

How to pass and validate the signInEmail claim during External IDP login using Azure B2C custom policy?

This question is related to this one. What we'd like to do is: at the moment the user clicks the button like Facebook OR Microsoft account OR Corporate AD in the Sign in page, call a validation technical profile to validate the email address the…