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

# Notify New Ticket Message

> Notify user agents about the creation of a new message on a ticket



## OpenAPI

````yaml /openapi/rest/openapi-v3-Ticket.json post /api/v1/Ticket/{ticketEntityId}/NotifyNewMessage
openapi: 3.0.0
info:
  version: v1-REST
  title: SuperOffice REST API v1
  description: SuperOffice REST API - Ticket
  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/Ticket/{ticketEntityId}/NotifyNewMessage:
    post:
      tags:
        - Ticket
      summary: Notify New Ticket Message
      description: Notify user agents about the creation of a new message on a ticket
      operationId: v1TicketEntity_NotifyNewTicketMessage
      parameters:
        - name: ticketEntityId
          in: path
          description: The id of the ticket to notify about
          required: true
          schema:
            format: int32
            type: integer
        - 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

- [Notify New Ticket Message](/en/api/reference/restful/agent/ticket_agent/notify-new-ticket-message.md)
- [SuperOffice.WebApi.Data.Ticket NotifyNewTicketMessageRequest](/en/api/reference/webapi/SuperOffice.WebApi.Data.Ticket_NotifyNewTicketMessageRequest.md)
- [NSTicketAgent](/en/automation/crmscript/reference/CRMScript.NetServer.NSTicketAgent.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)
- [Notify](/en/automation/crmscript/reference/CRMScript.Native.Notify.md)
