nosvalds
nosvalds

Reputation: 120

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.

https://github.com/Azure/api-management-developer-portal

Upvotes: 0

Views: 213

Answers (1)

SaiSakethGuduru
SaiSakethGuduru

Reputation: 2440

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

Upvotes: 0

Related Questions