Resend an invitation email to a user.
POSThttps://api.aitronos.com/v1/organizations/{organization_id}/users/{user_id}/resend-invitation
organization_id string required
Organization ID with org_ prefix.
user_id string required
User ID with usr_ prefix.
Success message.
Requires authentication. User must be Admin or Owner.
Bash
- Bash
- Python
- Python
- JavaScript
curl -X POST \
"https://api.aitronos.com/v1/organizations/org_xyz789/users/usr_abc123/resend-invitation" \
-H "X-API-Key: $FREDDY_API_KEY"Response:
{
"success": true,
"message": "Invitation email resent successfully"
}