Validate an organization invitation by email key. No authentication required.
GEThttps://api.aitronos.com/v1/invitations/validate/{email_key}
email_key string required
Invitation email key (UUID format).
Invitation validation status and details.
- No authentication required
- Returns organization and role information if valid
- Invitation links expire after 7 days
Bash
- Bash
- Python
- Python
- JavaScript
curl -X GET \
"https://api.aitronos.com/v1/invitations/validate/uuid-12345678-1234-1234-1234-123456789abc"Response:
{
"valid": true,
"invitation_id": "inv_abc123",
"email": "newmember@example.com",
"organization_id": "org_xyz789",
"organization_name": "Aitronos",
"role_id": "role_member",
"role_name": "Member",
"expires_at": "2025-11-26T14:30:00Z"
}