Skip to content
Last updated

Resend an invitation email to a user.

POSThttps://api.aitronos.com/v1/organizations/{organization_id}/users/{user_id}/resend-invitation

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.

Bash
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"
}