---
title: "Resend User Invitation"
url: "https://public-api-docs.cipherscale.com/apis/cipherscale-api-1/versions/fef69080-6094-4620-8bf0-16fd2de7b598/operations/UsersController_invite"
---

> Full API specification: https://public-api-docs.cipherscale.com/apis/cipherscale-api-1/versions/fef69080-6094-4620-8bf0-16fd2de7b598.md

# Resend User Invitation

`POST` `/tenants/users/{id}/invite`

Operation ID: `UsersController_invite`

Sends a new invitation email to a user with a pending invitation. This is useful when the original invitation email was not received, expired, or was accidentally deleted. Only users with pending invitation status can be reinvited.

## Path parameters

- `id` (string, uuid, required) - The unique identifier (UUID) of the user to reinvite

## Responses

- `201` - Successfully sent invitation email to the user
- `400` - Bad Request - User has already accepted the invitation
- `401` - Unauthorized - Invalid or missing authentication token
- `403` - Forbidden - Insufficient permissions to perform this operation.
- `404` - User not found with the provided ID

## OpenAPI definition

```yaml
openapi: 3.0.0
info:
  title: Cipherscale API
  version: "1.0"
servers:
  - url: https://public-api.cipherscale.com/qa
    description: Cipherscale Public API Server
paths:
  /tenants/users/{id}/invite:
    post:
      operationId: UsersController_invite
      summary: Resend User Invitation
      description: Sends a new invitation email to a user with a pending invitation.
        This is useful when the original invitation email was not received,
        expired, or was accidentally deleted. Only users with pending invitation
        status can be reinvited.
      parameters:
        - name: id
          required: true
          in: path
          description: The unique identifier (UUID) of the user to reinvite
          schema:
            format: uuid
            type: string
      responses:
        "201":
          description: Successfully sent invitation email to the user
        "400":
          description: Bad Request - User has already accepted the invitation
        "401":
          description: Unauthorized - Invalid or missing authentication token
        "403":
          description: Forbidden - Insufficient permissions to perform this operation.
        "404":
          description: User not found with the provided ID
      tags:
        - Users
      security:
        - ApiKeyAuth: []
        - ApiKeyAuth: []
security:
  - ApiKeyAuth: []
  - ApiKeyAuth: []
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: apikey
```
