# Resend Invitation Resend an invitation email to a user. ## Path Parameters **`organization_id`** string required Organization ID with `org_` prefix. **`user_id`** string required User ID with `usr_` prefix. ## Returns Success message. ## Authentication Requires authentication. User must be Admin or Owner. Request ```bash curl -X POST \ "https://api.aitronos.com/v1/organizations/org_xyz789/users/usr_abc123/resend-invitation" \ -H "X-API-Key: $FREDDY_API_KEY" ``` ```python Python SDK from aitronos import Aitronos client = Aitronos(api_key="your-api-key") result = client.crew_management_invitations.resend_invitation( organization_id="org_abc123", user_id="usr_abc123", ) print(result) ``` ```python import requests response = requests.post( "https://api.aitronos.com/v1/organizations/org_xyz789/users/usr_abc123/resend-invitation", headers={"X-API-Key": FREDDY_API_KEY} ) ``` ```javascript const response = await fetch('https://api.aitronos.com/v1/organizations/org_xyz789/users/usr_abc123/resend-invitation', { method: 'POST', headers: { 'X-API-Key': FREDDY_API_KEY } }); ``` **Response:** 200 OK ```json { "success": true, "message": "Invitation email resent successfully" } ``` 404 Not Found ```json { "success": false, "error": { "code": "RESOURCE_NOT_FOUND", "message": "The invitation could not be found.", "system_message": "Resource not found", "type": "client_error", "status": 404, "details": {}, "trace_id": "abc-123-def", "timestamp": "2025-01-01T00:00:00Z" } } ``` ## Related Resources - [Organization Overview](/docs/documentation/organizations)