Accept an invitation to join an organization.
POSThttps://api.aitronos.com/v1/invitations/accept
email_key string required
Invitation email key (UUID format).
Success message with organization details.
Requires authentication.
Bash
- Bash
- Python
- Python
- JavaScript
curl -X POST \
"https://api.aitronos.com/v1/invitations/accept" \
-H "X-API-Key: $FREDDY_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"email_key": "uuid-12345678-1234-1234-1234-123456789abc"
}'Response:
{
"success": true,
"message": "Invitation accepted successfully",
"organization_id": "org_xyz789",
"organization_name": "Aitronos"
}