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

# Add multiple members to watchlist

> Add multiple members to the watchlist

This endpoints allows up adding multiple companies and/or persons to a watchlist
in a single request. Up to 10 000 records are allowed to be added with
one request. If a company or person has already been added it will jump
over the record and only recorded added will be returned.

Please note that this endpoint doesn't allow you to include custom
identifiers (externalId) that the single endpoint for adding companies
or persons allows for.


## OpenAPI

````yaml post /watchlists/{watchListId}/members2
openapi: 3.0.4
info:
  title: TIC API
  description: ''
  version: v1
servers:
  - url: https://api.tic.io/
security:
  - ApiKey: []
tags:
  - name: BolagsverketStatistics
  - name: Companies
  - name: Companies_SE_
  - name: DocumentDelivery
  - name: EuropeanCommission
  - name: FinancialDocuments
  - name: Finansinspektionen
  - name: Free
  - name: ICA
  - name: ICAStatistics
  - name: Lists
  - name: Media
  - name: Persons
  - name: Persons_SE_
  - name: Properties_SE_
  - name: PTSPortings
  - name: Reseller
  - name: SearchBankruptciesReports
  - name: SearchCompanies
  - name: SearchCompaniesReports
  - name: SearchCompanyWorkplaces
  - name: SearchPerson
  - name: SearchProperties_SE_
  - name: SearchVehicles
  - name: TeamDocumentOrders
  - name: Teams
  - name: User
  - name: Vehicles_SE_
  - name: WatchLists
paths:
  /watchlists/{watchListId}/members2:
    post:
      tags:
        - WatchLists
      summary: Add multiple members to watchlist
      description: Add multiple members to the watchlist
      operationId: AddMemberToWatchList2
      parameters:
        - name: watchListId
          in: path
          required: true
          schema:
            type: integer
            format: int32
      requestBody:
        description: The payload
        content:
          application/json:
            schema:
              $ref: >-
                #/components/schemas/Ormeo_WebAPI_Models_WatchLists_WatchListMemberCreate2_Dto
        required: true
      responses:
        '201':
          description: Created
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: >-
                    #/components/schemas/Ormeo_WebAPI_Models_WatchLists_WatchListMember2_Dto
        '400':
          description: Bad Request
        '401':
          description: Unauthorized
        '422':
          description: Unprocessable Content
components:
  schemas:
    Ormeo_WebAPI_Models_WatchLists_WatchListMemberCreate2_Dto:
      type: object
      properties:
        companyIds:
          type: array
          items:
            type: integer
            format: int32
          nullable: true
        personIds:
          type: array
          items:
            type: integer
            format: int32
          nullable: true
      additionalProperties: false
    Ormeo_WebAPI_Models_WatchLists_WatchListMember2_Dto:
      type: object
      properties:
        teamWatchListMemberId:
          type: integer
          format: int32
        companyId:
          type: integer
          format: int32
          nullable: true
        personId:
          type: integer
          format: int32
          nullable: true
        externalId:
          type: string
          nullable: true
        lastUpdatedAtUtc:
          type: string
          format: date-time
          nullable: true
      additionalProperties: false
  securitySchemes:
    ApiKey:
      type: apiKey
      name: x-api-key
      in: header

````