Confirm Microsoft social identity REST API
GET
/api/auth/social/confirm
const url = 'http://127.0.0.1:25737/api/auth/social/confirm?token=example';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url 'http://127.0.0.1:25737/api/auth/social/confirm?token=example'Consumes a hashed one-time email confirmation token for a Microsoft account link or signup, then redirects without exposing provider identity data.
Parameters
Section titled “Parameters”Query Parameters
Section titled “Query Parameters”token
required
string
Responses
Section titled “Responses”Redirects to sign-in, onboarding, checkout, or a stable error path