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

# Resend team invitation



## OpenAPI

````yaml post /v1/customers/{id}/teams/{user_id}/resend
openapi: 3.0.0
info:
  title: Corebanq - Customers API
  description: API endpoints for customer management
  version: 1.0.0
servers: []
security: []
paths:
  /v1/customers/{id}/teams/{user_id}/resend:
    parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
          format: uuid
      - name: user_id
        in: path
        required: true
        schema:
          type: string
          format: uuid
    post:
      summary: Resend team invitation
      responses:
        '200':
          description: Invitation resent successfully

````