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

# Send Ticket Message Sms

> Send a message to recipients by sms



## OpenAPI

````yaml /openapi/rest/openapi-v3-TicketMessage.json post /api/v1/TicketMessage/{ticketMessageEntityId}/SendSms
openapi: 3.0.0
info:
  version: v1-REST
  title: SuperOffice REST API v1
  description: SuperOffice REST API - TicketMessage
  contact:
    name: SuperOffice DevNet
    url: https://docs.superoffice.com/en/api/index.html
    email: sdk@superoffice.com
servers:
  - url: http://localhost:56350
  - url: https://localhost:56350
security: []
tags: []
externalDocs:
  description: >-
    The SuperOffice DevNet Community has more documentation, examples, and
    discussion forums.
  url: https://community.superoffice.com/en/developer/
paths:
  /api/v1/TicketMessage/{ticketMessageEntityId}/SendSms:
    post:
      tags:
        - TicketMessage
      summary: Send Ticket Message Sms
      description: Send a message to recipients by sms
      operationId: v1TicketMessageEntity_SendTicketMessageSms
      parameters:
        - name: ticketMessageEntityId
          in: path
          description: The id of the ticket message to send
          required: true
          schema:
            type: integer
            format: int32
        - name: sms
          in: query
          description: The Sms-recipients. Each recipient must be in correct format
          required: true
          explode: true
          schema:
            type: array
            items:
              type: string
        - name: replyTemplateId
          in: query
          description: Optional ID of reply template to merge message with. <= 0 to skip.
          required: false
          schema:
            type: integer
            format: int32
        - name: SO-AppToken
          in: header
          description: >-
            The application token that identifies the partner app. Used when
            calling Online WebAPI from a server.
          required: false
          schema:
            type: string
      responses:
        '204':
          description: No Content
      security:
        - SuperOffice_Password: []
          SuperId_Authentication: []
components: {}

````

## Related topics

- [Send Ticket Message Sms](/en/api/reference/restful/agent/ticket_agent/send-ticket-message-sms.md)
- [SuperOffice.WebApi.Data.Ticket SendTicketMessageSmsRequest](/en/api/reference/webapi/SuperOffice.WebApi.Data.Ticket_SendTicketMessageSmsRequest.md)
- [SuperOffice.WebApi.Agents.TicketAgent](/en/api/reference/webapi/SuperOffice.WebApi.Agents.TicketAgent.md)
- [SuperOffice.WebApi.Agents.ITicketAgent](/en/api/reference/webapi/SuperOffice.WebApi.Agents.ITicketAgent.md)
- [Send messages (email or SMS)](/en/mobile/send-email-sms.md)
- [NSTicketAgent](/en/automation/crmscript/reference/CRMScript.NetServer.NSTicketAgent.md)
