'Is there a way to tell if sign up activation email was sent successfully from Azure APIM Developer Portal?
We're using the Managed Developer Portal in Azure API Management (APIM). When signing up, a user should receive an email to confirm their account.
Has anyone found a way to troubleshoot when users report not receiving an email? I haven't been able to find anything in the documentation or GitHub Issues for the Managed Developer Portal.
Solution 1:[1]
This can be achievable using self hosted API management for which you need to implement an endpoint on your portal GET /confirm-v2/identities/basic/signup
and then this endpoint should convert the request to MAPI call
POST {managementApiUrl}/users/{userId}/identities/Basic/{identity}?api-version={managementApiVersion}
with "Authorization": token
You can get the token, userid, identity from request query string parameter
for token authorization you can add header "Ticket id={ticketId},ticket={ticket}"
for further details check the Microsoft Q&A and Github
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | SaiSakethGuduru-MT |
