> ## Documentation Index
> Fetch the complete documentation index at: https://docs.hybridbox.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Renvoyer l’invitation

> Renvoyer une invitation de compte

<script src="/locale-bridge.js" />


## OpenAPI

````yaml /openapi.fr.json POST /v1/public/accounts/{account_id}/auth/invitations/{invitation_id}/resend
openapi: 3.1.0
info:
  title: Code API (Public)
  version: 1.0.0
servers:
  - url: https://api.hybridbox.io
security: []
paths:
  /v1/public/accounts/{account_id}/auth/invitations/{invitation_id}/resend:
    post:
      tags:
        - public-accounts
        - public-account-auth
      summary: Renvoyer une invitation de compte
      description: Renvoie une invitation au périmètre du compte.
      operationId: >-
        resend_public_account_invitation_v1_public_accounts__account_id__auth_invitations__invitation_id__resend_post
      parameters:
        - in: path
          name: invitation_id
          required: true
          schema:
            format: uuid
            title: Invitation Id
            type: string
        - in: path
          name: account_id
          required: true
          schema:
            format: uuid
            title: Account Id
            type: string
      requestBody:
        content:
          application/json:
            schema:
              anyOf:
                - $ref: '#/components/schemas/ResendInvitationRequest'
                - type: 'null'
              title: Request
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InviteResponse'
          description: ''
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
          description: Erreur de validation
      security:
        - PublicBearerAuth: []
components:
  schemas:
    ResendInvitationRequest:
      description: Schéma de demande pour renvoyer un e-mail d'invitation en attente.
      properties:
        locale:
          anyOf:
            - type: string
            - type: 'null'
          description: Optional locale pour transactional invitation email
          title: Paramètres régionaux
      title: ResendInvitationRequest
      type: object
    InviteResponse:
      properties:
        accepted_at:
          anyOf:
            - format: date-time
              type: string
            - type: 'null'
          title: accepté à
        accepted_subject_id:
          anyOf:
            - type: string
            - type: 'null'
          title: accepté sujet ID
        assignments:
          items:
            $ref: '#/components/schemas/InvitationAssignmentResponse'
          title: attributions
          type: array
        created_at:
          anyOf:
            - format: date-time
              type: string
            - type: 'null'
          title: créé à
        email:
          title: e-mail
          type: string
        expires_at:
          anyOf:
            - format: date-time
              type: string
            - type: 'null'
          title: expire à
        id:
          format: uuid
          title: ID
          type: string
        note:
          anyOf:
            - type: string
            - type: 'null'
          title: note
        permission_context:
          $ref: '#/components/schemas/PermissionInspectabilitySnapshot'
        status:
          title: Statut
          type: string
      required:
        - id
        - email
        - status
        - assignments
        - permission_context
      title: InviteResponse
      type: object
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          title: Détail
          type: array
      title: HTTPValidationError
      type: object
    InvitationAssignmentResponse:
      description: >-
        Schéma pour une attribution d’autorisation unique dans une réponse à une
        invitation.
      properties:
        assignment_kind:
          title: attribution type
          type: string
        capability_key:
          anyOf:
            - type: string
            - type: 'null'
          title: capacité clé
        grant_kind:
          anyOf:
            - type: string
            - type: 'null'
          title: octroi type
        group_id:
          anyOf:
            - type: string
            - type: 'null'
          title: groupe ID
        id:
          anyOf:
            - format: uuid
              type: string
            - type: 'null'
          title: ID
        position:
          title: position
          type: integer
        resource_id:
          anyOf:
            - format: uuid
              type: string
            - type: 'null'
          title: ressource ID
        resource_type:
          anyOf:
            - type: string
            - type: 'null'
          title: ressource type
        role_key:
          anyOf:
            - type: string
            - type: 'null'
          title: Clé de rôle
      required:
        - assignment_kind
        - position
      title: InvitationAssignmentResponse
      type: object
    PermissionInspectabilitySnapshot:
      description: >-
        Instantané d’inspectabilité partagé pour la gestion des utilisateurs,
        des groupes et des invitations.
      properties:
        assigned_bundle_keys:
          items:
            type: string
          title: Clés de bundle attribuées
          type: array
        direct_capability_keys:
          items:
            type: string
          title: Direct capacité Keys
          type: array
        owner_assignments:
          items:
            $ref: '#/components/schemas/OwnerAssignmentSnapshot'
          title: propriétaire attributions
          type: array
        resolved_capability_keys:
          items:
            type: string
          title: résolu capacité Keys
          type: array
        status:
          default: active
          title: Statut
          type: string
        subject_id:
          default: ''
          title: sujet ID
          type: string
        subject_type:
          default: unknown
          title: sujet type
          type: string
      title: PermissionInspectabilitySnapshot
      type: object
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          title: Emplacement
          type: array
        msg:
          title: Message
          type: string
        type:
          title: Type d erreur
          type: string
      required:
        - loc
        - msg
        - type
      title: ValidationError
      type: object
    OwnerAssignmentSnapshot:
      description: Schéma indiquant une relation de propriétaire de compte.
      properties:
        account_id:
          format: uuid
          title: compte ID
          type: string
      required:
        - account_id
      title: OwnerAssignmentSnapshot
      type: object
  securitySchemes:
    PublicBearerAuth:
      bearerFormat: JWT or Hybridbox Service account token
      description: >-
        Public API bearer credential sent as `Authorization: Bearer <token>`.
        Use either an OAuth access token or a Hybridbox Service account token.
      scheme: bearer
      type: http

````