My goal is a publicly available Azure API Management Developer Portal where the users can sign in if they want, but the sign up functionality has been disabled - you have to be invited by us to get a user.
I've enabled the Management API and use the Sign Up settings page to PATCH with this body. This returns a 204 No Content, so the call seems to be correct.
{
"properties": {
"enabled": false
}
}
I would have expected to that sign up was removed and disabled from the portal, but it's not. What I see instead is that 'Username and Password' has been removed from Identities in the Azure Portal. Users can still sign in and sign up even though this is removed, which I find weird.
Has anybody experience the same? Any suggestions to what I could try?