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

# Get member

> Get member by id



## OpenAPI

````yaml get /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}:
    get:
      tags:
        - WatchLists
      summary: Get member
      description: Get member by id
      operationId: WatchListMemberById
      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
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/Ormeo_WebAPI_Models_WatchLists_WatchListMemberDetail_Dto
components:
  schemas:
    Ormeo_WebAPI_Models_WatchLists_WatchListMemberDetail_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
        companySummary:
          $ref: '#/components/schemas/Ormeo_WebAPI_Models_Base_CompanySummary_Dto'
      additionalProperties: false
    Ormeo_WebAPI_Models_Base_CompanySummary_Dto:
      type: object
      properties:
        legalName:
          type: string
          nullable: true
        purpose:
          type: string
          nullable: true
        sniCodes:
          type: string
          nullable: true
        mailingAddressCO:
          type: string
          nullable: true
        mailingAddressStreet:
          type: string
          nullable: true
        mailingAddressPostalCode:
          type: string
          nullable: true
        mailingAddressCity:
          type: string
          nullable: true
        mailingAddressState:
          type: string
          nullable: true
        mailingAddressCounty:
          type: string
          nullable: true
        mailingAddressDistrict:
          type: string
          nullable: true
        mailingAddressCountryName:
          type: string
          nullable: true
        mailingAddressCountryCodeAlpha3:
          type: string
          nullable: true
        mailingAddressLatitude:
          type: number
          format: double
          nullable: true
        mailingAddressLongitude:
          type: number
          format: double
          nullable: true
        mailingAddressId:
          type: integer
          format: int32
          nullable: true
        hasAuditor:
          type: boolean
          nullable: true
        companyRepresentativeBornYear:
          type: integer
          format: int32
          nullable: true
        registeredVAT:
          type: boolean
          nullable: true
        registeredFTax:
          type: boolean
          nullable: true
        registeredPayroll:
          type: boolean
          nullable: true
        period1:
          type: integer
          format: int32
          nullable: true
        period1_IS_NetSalesK:
          type: integer
          format: int32
          nullable: true
        period1_FN_NumberOfEmployees:
          type: number
          format: double
          nullable: true
        period1_IS_OperatingProfitOrLossK:
          type: integer
          format: int32
          nullable: true
        period1_IsAudited:
          type: boolean
          nullable: true
        period2:
          type: integer
          format: int32
          nullable: true
        period2_IS_NetSalesK:
          type: integer
          format: int32
          nullable: true
        period2_FN_NumberOfEmployees:
          type: number
          format: double
          nullable: true
        period2_IS_OperatingProfitOrLossK:
          type: integer
          format: int32
          nullable: true
        period2_IsAudited:
          type: boolean
          nullable: true
        period3:
          type: integer
          format: int32
          nullable: true
        period3_IS_NetSalesK:
          type: integer
          format: int32
          nullable: true
        period3_FN_NumberOfEmployees:
          type: number
          format: double
          nullable: true
        period3_IS_OperatingProfitOrLossK:
          type: integer
          format: int32
          nullable: true
        period3_IsAudited:
          type: boolean
          nullable: true
        intelligenceScoreTotal:
          type: integer
          format: int32
          nullable: true
        intelligenceNumberOfMax:
          type: integer
          format: int32
          nullable: true
        kfm_DebtBalanceTotalAmountInSEK:
          type: number
          format: double
          nullable: true
        kfm_RecordOfNonPaymentNumberOfCases:
          type: integer
          format: int32
          nullable: true
        numberOfEmailAddresses:
          type: integer
          format: int32
          nullable: true
        lastCompanyStatusType:
          type: integer
          format: int32
          nullable: true
        lastCompanyStatusDate:
          type: string
          format: date-time
          nullable: true
        lastCompanyStatusDescription:
          type: string
          nullable: true
        lastUpdatedAtUtc:
          type: string
          format: date-time
          nullable: true
      additionalProperties: false
  securitySchemes:
    ApiKey:
      type: apiKey
      name: x-api-key
      in: header

````