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

# Add member

> **Requires Enterprise plan or higher.**

Creates a Tightknit member for the community. Links the member to a Slack profile when the email matches.



## OpenAPI

````yaml https://api.tightknit.ai/doc-mintlify post /admin/v0/members
openapi: 3.1.0
info:
  version: 0.0.0
  title: Tightknit OpenAPI
servers:
  - url: https://api.tightknit.ai
    description: Production server
security:
  - Bearer: []
paths:
  /admin/v0/members:
    post:
      tags:
        - Members
      summary: Add member
      description: >-
        **Requires Enterprise plan or higher.**


        Creates a Tightknit member for the community. Links the member to a
        Slack profile when the email matches.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                email:
                  type: string
                  minLength: 1
                  maxLength: 254
                  format: email
                full_name:
                  type: string
                  minLength: 1
                  maxLength: 100
                avatar_url_original:
                  type: string
                  nullable: true
                  maxLength: 2048
                  format: uri
              required:
                - email
                - full_name
      responses:
        '201':
          description: New member was created successfully.
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    enum:
                      - true
                  message:
                    type: string
                  data:
                    type: object
                    properties:
                      member:
                        type: object
                        properties:
                          id:
                            type: string
                            format: uuid
                          email:
                            type: string
                            nullable: true
                            format: email
                          full_name:
                            type: string
                          preferred_name:
                            type: string
                          avatar_url_original:
                            type: string
                            nullable: true
                          slack_profile_id:
                            type: string
                            nullable: true
                            pattern: ^U[A-Z0-9]{8,20}$
                        required:
                          - id
                          - email
                          - full_name
                          - preferred_name
                          - avatar_url_original
                          - slack_profile_id
                    required:
                      - member
                required:
                  - success
                  - message
                  - data
        '400':
          description: Invalid request body
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  error:
                    type: object
                    properties:
                      code:
                        type: string
                      message:
                        type: string
                      hint:
                        type: string
                    required:
                      - code
                      - message
                required:
                  - success
                  - error
        '403':
          description: Forbidden error
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  error:
                    type: object
                    properties:
                      code:
                        type: string
                      message:
                        type: string
                      hint:
                        type: string
                    required:
                      - code
                      - message
                required:
                  - success
                  - error
        '409':
          description: >-
            Member with the provided email already exists; no update was
            performed.
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  error:
                    type: object
                    properties:
                      code:
                        type: string
                      message:
                        type: string
                      hint:
                        type: string
                    required:
                      - code
                      - message
                required:
                  - success
                  - error
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  error:
                    type: object
                    properties:
                      code:
                        type: string
                      message:
                        type: string
                      hint:
                        type: string
                    required:
                      - code
                      - message
                required:
                  - success
                  - error
components:
  securitySchemes:
    Bearer:
      type: http
      scheme: bearer
      bearerFormat: JWT

````