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

# Send a notification (real delivery for EMAIL channel with email+html supplied)



## OpenAPI

````yaml /openapi/engagement-service.json post /v1/notifications/send
openapi: 3.0.0
info:
  title: Asiko Engagement Service
  description: Notifications, campaigns/discounts, and analytics/reporting
  version: '1.0'
  contact: {}
servers:
  - url: https://asikodevapi.candourit.io
    description: Production (via api-gateway)
  - url: http://localhost:3000
    description: Local development (via api-gateway)
security: []
tags:
  - name: notifications
    description: ''
  - name: campaigns
    description: ''
  - name: analytics
    description: ''
paths:
  /v1/notifications/send:
    post:
      tags:
        - notifications
      summary: >-
        Send a notification (real delivery for EMAIL channel with email+html
        supplied)
      operationId: NotificationsController_send
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SendNotificationBody'
      responses:
        '201':
          description: ''
components:
  schemas:
    SendNotificationBody:
      type: object
      properties:
        channel:
          type: string
          example: EMAIL
          enum:
            - EMAIL
            - SMS
            - WHATSAPP
            - PUSH
            - IN_APP
        userId:
          type: string
          example: b6a1e2d4-8f3c-4a5b-9e2d-1f4c6a8b9d0e
        subject:
          type: string
          example: Your order has shipped!
        email:
          type: string
          example: customer@example.com
        html:
          type: string
          example: >-
            <p>Your order #12345 has shipped and will arrive within 3-5 business
            days.</p>
        text:
          type: string
          example: >-
            Your order #12345 has shipped and will arrive within 3-5 business
            days.
      required:
        - channel
        - userId
        - subject

````