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

# Create a notification trigger

> Adds a new notification trigger (Email, Webhook, or SMS) to the watchlist. Email destinations receive a confirmation email and must be validated before notifications are delivered. Webhooks are considered validated on creation. SMS destinations must be an E.164 mobile number.

<Badge color="green" size="sm">Pro+ tier</Badge>


## OpenAPI

````yaml post /watchlists/{id}/notifications
openapi: 3.1.1
info:
  title: TIC Lens API
  description: "The TIC Lens API provides programmatic access to company, person, property, vehicle, and order data.\r\n\r\n## Authentication\r\n\r\nAll requests require an API key passed via the `x-api-key` header:\r\n\r\n```bash\r\ncurl -H \"x-api-key: YOUR_API_KEY\" https://lens-api.tic.io/companies/123\r\n```\r\n\r\nAPI keys are managed through the TIC Lens web application under **Settings → API Keys**.\r\n\r\n## Base URL\r\n\r\n| Environment | URL |\r\n|-------------|-----|\r\n| Production  | `https://lens-api.tic.io` |\r\n\r\n## Feature Access\r\n\r\nEndpoints are gated by your subscription plan. If your plan does not include a feature, the endpoint will return `403 Forbidden`.\r\n\r\n## Rate Limits\r\n\r\nRate limits are applied per API key. If you exceed the limit, requests will return `429 Too Many Requests`.\r\n\r\n## Response Format\r\n\r\nAll responses are JSON. Null values are omitted from responses.\r\n"
  version: v1
servers:
  - url: https://lens-api.tic.io
security:
  - ApiKey: []
tags:
  - name: Addresses
  - name: Bolagsverket
  - name: Brf
  - name: Companies
  - name: Documents
  - name: FlightImages
  - name: Free
  - name: Orders
  - name: OrdersExports
  - name: PaymentControl
  - name: PaymentControlImport
  - name: Persons
  - name: Properties
  - name: PublicSearch
  - name: SearchAutocomplete
  - name: Sentinel
  - name: ServingPermits
  - name: Team
  - name: Teams
  - name: Transportstyrelsen
  - name: Vehicles
  - name: WatchList
paths:
  /watchlists/{id}/notifications:
    post:
      tags:
        - WatchList
      summary: Create a notification trigger
      description: >-
        Adds a new notification trigger (Email, Webhook, or SMS) to the
        watchlist. Email destinations receive a confirmation email and must be
        validated before notifications are delivered. Webhooks are considered
        validated on creation. SMS destinations must be an E.164 mobile number.
      operationId: CreateWatchListNotification
      parameters:
        - name: id
          in: path
          description: Watchlist GUID
          required: true
          schema:
            type: string
            format: uuid
      requestBody:
        content:
          application/json-patch+json:
            schema:
              $ref: >-
                #/components/schemas/Ormeo_Web_Lens_Models_WatchList_CreateWatchListNotification_Request
          application/json:
            schema:
              $ref: >-
                #/components/schemas/Ormeo_Web_Lens_Models_WatchList_CreateWatchListNotification_Request
          text/json:
            schema:
              $ref: >-
                #/components/schemas/Ormeo_Web_Lens_Models_WatchList_CreateWatchListNotification_Request
          application/*+json:
            schema:
              $ref: >-
                #/components/schemas/Ormeo_Web_Lens_Models_WatchList_CreateWatchListNotification_Request
      responses:
        '201':
          description: Notification trigger created
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/Ormeo_Web_Lens_Models_WatchList_WatchListNotification_Dto
        '400':
          description: Invalid destination for the declared DestinationType
        '404':
          description: Watchlist not found in this team
        '409':
          description: Destination already registered for this watchlist
components:
  schemas:
    Ormeo_Web_Lens_Models_WatchList_CreateWatchListNotification_Request:
      type: object
      properties:
        destination:
          type:
            - 'null'
            - string
        destinationType:
          $ref: '#/components/schemas/Ormeo_Library_Entities_DestinationType'
      additionalProperties: false
    Ormeo_Web_Lens_Models_WatchList_WatchListNotification_Dto:
      type: object
      properties:
        notificationId:
          type: string
          format: uuid
        destination:
          type:
            - 'null'
            - string
        destinationType:
          $ref: '#/components/schemas/Ormeo_Library_Entities_DestinationType'
        destinationTypeDescription:
          type:
            - 'null'
            - string
          readOnly: true
        hasBeenValidated:
          type: boolean
        lastUpdatedAtUtc:
          type: string
          format: date-time
      additionalProperties: false
    Ormeo_Library_Entities_DestinationType:
      enum:
        - webhook
        - email
        - sms
      type: string
  securitySchemes:
    ApiKey:
      type: apiKey
      name: x-api-key
      in: header

````