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

# Send video message

> Sends a video message to a phone number. Requires that the recipient has messaged the business in the last 24 hours.



## OpenAPI

````yaml POST /messages/video
openapi: 3.0.0
info:
  title: Cogfy Messenger Public API
  version: 1.0.0
  description: API for interacting with the Cogfy Messenger platform
servers:
  - url: https://messenger-public-api.cogfy.com
    description: Production server
  - url: http://localhost:53981
    description: Local server
security:
  - ApiKeyAuth: []
tags: []
paths:
  /messages/video:
    post:
      tags:
        - Messages
      summary: Send video message
      description: >-
        Sends a video message to a phone number. Requires that the recipient has
        messaged the business in the last 24 hours.
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                from:
                  type: string
                to:
                  type: string
                video:
                  type: object
                  properties:
                    id:
                      type: string
                    link:
                      type: string
                    caption:
                      type: string
      responses:
        '200':
          description: Video message sent successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: string
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: api-key

````