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

# Test a trigger

> Test a trigger by id

You can use this endpoint to test your triggers (only webhoooks) and
we will send a webhook to your endpoint.


## OpenAPI

````yaml post /watchlists/{watchListId}/triggers/{triggerId}/test
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}/triggers/{triggerId}/test:
    post:
      tags:
        - WatchLists
      summary: Test a trigger
      description: Test a trigger by id
      operationId: WatchListTestTriggerById
      parameters:
        - name: watchListId
          in: path
          description: The watchlist id
          required: true
          schema:
            type: integer
            format: int32
        - name: triggerId
          in: path
          description: The trigger id
          required: true
          schema:
            type: integer
            format: int32
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: >-
                    #/components/schemas/Ormeo_Library_Watchlist_WatchListMemberEvent_Dto
components:
  schemas:
    Ormeo_Library_Watchlist_WatchListMemberEvent_Dto:
      type: object
      properties:
        teamWatchListMemberEventId:
          type: integer
          format: int32
        teamWatchListMemberId:
          type: integer
          format: int32
        teamWatchListId:
          type: integer
          format: int32
        externalId:
          type: string
          nullable: true
        companyId:
          type: integer
          format: int32
          nullable: true
        personId:
          type: integer
          format: int32
          nullable: true
        watchListMemberEventType:
          $ref: '#/components/schemas/Ormeo_Library_Entities_WatchListMemberEventType'
        watchListMemberSubType:
          type: string
          nullable: true
        eventDate:
          type: string
          format: date-time
        lastUpdatedAtUtc:
          type: string
          format: date-time
      additionalProperties: false
    Ormeo_Library_Entities_WatchListMemberEventType:
      enum:
        - companyAddress
        - companyName
        - companyStatus
        - companyRegistration
        - companyIntelligence
        - companyBeneficialOwner
        - companyDocument
        - companyWorkplace
        - companyPerson
        - companyRegisteredOffice
        - companyShareCapital
        - companyPurpose
        - companyDebtBalance
        - companyOrderToPayCase
        - companyFinancialDocument
        - companyCase
        - companyWorkplaceAddress
        - unuseD_Company4
        - unuseD_Company5
        - unuseD_Company6
        - unuseD_Company7
        - unuseD_Company8
        - unuseD_Company9
        - unuseD_Company10
        - personAddress
        - personName
        - personIntelligence
        - personStatus
        - personCompany
        - unuseD_Person1
        - unuseD_Person2
        - unuseD_Person3
        - unuseD_Person4
        - unuseD_Person5
        - unuseD_Person6
        - unuseD_Person7
        - unuseD_Person8
        - unuseD_Person9
        - unuseD_Person10
        - propertyOwnershipChange
        - propertyMortageDeedChange
        - unuseD_Property1
        - unuseD_Property2
        - unuseD_Property3
        - unuseD_Property4
        - unuseD_Property5
        - vehicleOwnerChange
        - vehicleUserChange
        - vehicleStatusChange
        - vehicleInspection
        - vehicleStolen
        - unuseD_Vehicle1
        - unuseD_Vehicle2
        - unuseD_Vehicle3
        - unuseD_Vehicle4
        - unuseD_Vehicle5
      type: string
  securitySchemes:
    ApiKey:
      type: apiKey
      name: x-api-key
      in: header

````