> ## 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.

# Edit

> Updates an existing member



## OpenAPI

````yaml put /watchlists/{watchListId}/members/{memberId}
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}/members/{memberId}:
    put:
      tags:
        - WatchLists
      summary: Edit
      description: Updates an existing member
      operationId: WatchListMemberEdit
      parameters:
        - name: watchListId
          in: path
          description: The watchlist id
          required: true
          schema:
            type: integer
            format: int32
        - name: memberId
          in: path
          description: The member id
          required: true
          schema:
            type: integer
            format: int32
      requestBody:
        description: The payload
        content:
          application/json-patch+json:
            schema:
              $ref: >-
                #/components/schemas/Ormeo_WebAPI_Models_WatchLists_WatchListMemberEdit_Dto
          application/json:
            schema:
              $ref: >-
                #/components/schemas/Ormeo_WebAPI_Models_WatchLists_WatchListMemberEdit_Dto
          text/json:
            schema:
              $ref: >-
                #/components/schemas/Ormeo_WebAPI_Models_WatchLists_WatchListMemberEdit_Dto
          application/*+json:
            schema:
              $ref: >-
                #/components/schemas/Ormeo_WebAPI_Models_WatchLists_WatchListMemberEdit_Dto
        required: true
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/Ormeo_WebAPI_Models_WatchLists_WatchListDetail_Dto
        '401':
          description: Unauthorized
        '422':
          description: Unprocessable Content
components:
  schemas:
    Ormeo_WebAPI_Models_WatchLists_WatchListMemberEdit_Dto:
      type: object
      properties:
        externalId:
          maxLength: 255
          type: string
          nullable: true
      additionalProperties: false
    Ormeo_WebAPI_Models_WatchLists_WatchListDetail_Dto:
      type: object
      properties:
        teamWatchListId:
          type: integer
          format: int32
        watchListName:
          type: string
          nullable: true
        watchListDescription:
          type: string
          nullable: true
        numberOfMembersOnWatchList:
          type: integer
          format: int32
        lastUpdatedAtUtc:
          type: string
          format: date-time
          nullable: true
      additionalProperties: false
  securitySchemes:
    ApiKey:
      type: apiKey
      name: x-api-key
      in: header

````