I can create an invitation for a B2B user by a POST to
https://graph.microsoft.com/v1.0/invitations
and with body
{
"invitedUserEmailAddress": "[email protected]",
"inviteRedirectUrl": "https://myapp.com"
}
This redirects the user to "https://myapp.com" after they have redeemed their invitation.
Is is possible to invite someone without redirecting them after redemption? If it's not absolutely necessary, I would like to avoid the hassle of hosting a confirmation webpage just for that purpose. However, the API does not accept a null or empty or relative URL for "inviteRedirectUrl".