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

# Create People

> Create people

<Tip>You can also pass an optional parameter to specify how much credits/gifts to reward them</Tip>


## OpenAPI

````yaml post /api/ext/v1/people
openapi: 3.0.1
info:
  title: Covver External API docs
  description: Covver External API docs
  version: 0.1.0
servers:
  - url: https://staging-api.covver.io
    description: Covver Staging Server
  - url: https://api.covver.io
    description: Covver Production Server
  - url: http://localhost:8080
    description: Covver Local Server
security:
  - BearerAuth: []
tags:
  - name: Auth
    description: Authentication endpoints
  - name: Products
    description: Product endpoints
  - name: People
    description: People endpoints
  - name: Orders
    description: Orders endpoints
  - name: Reports
    description: Report endpoints
externalDocs:
  url: https://swagger.io
  description: Find more info here
paths:
  /api/ext/v1/people:
    post:
      tags:
        - People
      summary: Create People
      description: Create people
      requestBody:
        content:
          application/json:
            schema:
              additionalProperties: false
              type: object
              properties:
                people:
                  type: array
                  items:
                    type: object
                    properties:
                      firstName:
                        minLength: 1
                        type: string
                      lastName:
                        minLength: 1
                        type: string
                      email:
                        minLength: 1
                        type: string
                      birthDate:
                        type: string
                      startDate:
                        type: string
                      externalId:
                        type: string
                      location:
                        type: string
                      department:
                        type: string
                      addBalance:
                        description: Amount of balance to add to the person
                        type: number
                    required:
                      - firstName
                      - lastName
                      - email
                companyId:
                  type: string
                collectionId:
                  type: string
                amount:
                  type: number
                shouldSendEmail:
                  type: boolean
              required:
                - people
                - collectionId
        required: true
      responses:
        '200':
          description: Default Response
          content:
            application/json:
              schema:
                type: array
                items:
                  additionalProperties: false
                  type: object
                  properties:
                    id:
                      type: string
                    firstName:
                      type: string
                    lastName:
                      type: string
                    email:
                      type: string
                  required:
                    - id
                    - firstName
                    - lastName
                    - email
        4XX:
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                  errorCode:
                    type: string
                  error: {}
                  statusCode:
                    type: number
                required:
                  - message
                  - errorCode
                  - statusCode
        5XX:
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                  errorCode:
                    type: string
                  error: {}
                  statusCode:
                    type: number
                required:
                  - message
                  - errorCode
                  - statusCode
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````