> ## 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 interactive order status message

> Sends an interactive order status update message.



## OpenAPI

````yaml POST /messages/interactive/order_status
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/interactive/order_status:
    post:
      tags:
        - Messages
      summary: Send interactive order status message
      description: Sends an interactive order status update message.
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                from:
                  type: string
                to:
                  type: string
                interactive:
                  type: object
                  properties:
                    type:
                      type: string
                      enum:
                        - order_status
                      default: order_status
                    header:
                      type: object
                      nullable: true
                      properties:
                        type:
                          type: string
                          enum:
                            - image
                    body:
                      type: object
                      properties:
                        text:
                          type: string
                          maxLength: 1024
                    footer:
                      type: object
                      nullable: true
                      properties:
                        text:
                          type: string
                          maxLength: 60
                    action:
                      type: object
                      properties:
                        name:
                          type: string
                          enum:
                            - review_order
                          default: review_order
                        parameters:
                          type: object
                          properties:
                            reference_id:
                              type: string
                            order:
                              type: object
                              properties:
                                status:
                                  type: string
                                  enum:
                                    - pending
                                    - processing
                                    - partially-shipped
                                    - shipped
                                    - completed
                                    - canceled
                                description:
                                  type: string
                                  maxLength: 120
                                  nullable: true
                            payment:
                              type: object
                              nullable: true
                              properties:
                                status:
                                  type: string
                                  enum:
                                    - pending
                                    - captured
                                    - failed
                                timestamp:
                                  type: integer
                                  nullable: true
      responses:
        '200':
          description: Interactive order status message sent successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: string
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: api-key

````