Environment
| Field |
Value |
| Resource Group |
toby-stg-ext--resource-group |
| API Management service |
toby-stg-ext--api-management |
| SKU / Tier |
Basic, capacity 1 |
| Region |
East US 2 |
Issue summary
We are unable to create a new user on this API Management instance. Every attempt to create a user — whether via the Azure Resource Manager REST API or manually through the Azure Portal — is rejected with the same error:
400 Bad Request
{"error":{"code":"ValidationError","message":"User registration is not supported.","details":null}}
A team member was able to create a user on this exact same instance a few days before this started, with no configuration changes made in between.
Steps to reproduce
Via Azure CLI (az rest, calling the ARM management API directly):
PUT https://management.azure.com/subscriptions/<subscription-id>/resourceGroups/toby-stg-ext--resource-group/providers/Microsoft.ApiManagement/service/toby-stg-ext--api-management/users/{userId}?api-version=2024-05-01
Body:
{
"properties": {
"firstName": "something",
"lastName": "something",
"email": "something",
"password": "something",
"state": "active"
}
}
Result: 400 Bad Request — ValidationError: "User registration is not supported." — every time, with no exceptions.
Via the Azure Portal (manual UI attempt):
Also attempted directly in the Azure Portal (API Management instance → Developer portal → Users → + Add), entering the same user details manually. No progress — the same failure occurs there as well, confirming this isn't specific to how we call the API.
Variations tried (all fail identically)
- Password +
state: "active" set directly on creation
-
confirmation: "invite" instead of setting a password directly
- An older API version (
api-version=2022-08-01) instead of 2024-05-01
- Manual attempt through the Azure Portal UI (see above)
What we've already validated (ruled out as the cause)
| Check |
Result |
portalsettings/delegation |
enabled: false, userRegistration.enabled: false — not delegating registration anywhere |
| Service SKU / tier |
Basic — this tier fully supports native user management (not Consumption or a v2 tier) |
identityProviders |
Empty list — expected, since username/password (Basic) sign-up doesn't require an identity provider entry |
portalsettings/signup |
enabled: true |
| Developer portal provisioning |
Reachable developerPortalUrl, provisioningState: Succeeded |
Every documented prerequisite for user creation is correctly configured on our end.
Additional context
This looks identical to a thread reported here a couple months ago — same error code (ValidationError), same message text word-for-word ("User registration is not supported."), on the same tiers (Developer/Basic), reported by multiple unrelated customers starting 2026-05-04:
This is not a similar or related error — it is character-for-character identical to what we are receiving. In that thread, a Microsoft engineer attributed the issue to a backend platform update; it self-resolved for those customers around 2026-05-20 without any customer-side configuration change. We believe we may be hitting a recurrence of that same underlying platform issue.
As of this post, our issue has been ongoing for over 14 hours with no signs of resolving on its own, and no related incident is currently listed in Azure Service Health / Azure status history.
Request IDs for reference
A recent failed attempt (2026-07-07) returned the following request IDs, in case a Microsoft engineer can use them to look up the exact failed call on their end:
-
x-ms-request-id: 7fb16b04-67da-4664-95ba-ef82b76c0f82
-
x-ms-correlation-request-id: 7fb16b04-67da-4664-95ba-ef82b76c0f82
Question
Is this a recurrence of the platform issue from thread #5880233? Is there anything we can check or do on our side, or is this purely a backend issue that needs a Microsoft-side fix like last time?