### Tickets API Operations Source: https://apidocs.neetodesk.com/apis/index APIs to create, and get details of a ticket. These operations allow for managing ticket lifecycle and retrieving specific ticket information. ```APIDOC Tickets API Operations: POST /public/tickets Description: Creates a new ticket. Parameters: (Request Body) - Ticket details (e.g., subject, description, status, priority, assignee, etc.) Returns: Details of the newly created ticket. GET /public/tickets Description: Retrieves a list of tickets. Parameters: (Query Parameters) - Filtering, sorting, and pagination options (e.g., status, assignee, page, limit) Returns: A list of tickets matching the criteria. GET /public/tickets/{ticket_id} Description: Retrieves details for a specific ticket by its ID. Parameters: ticket_id (path parameter): The unique identifier of the ticket. Returns: Detailed information for the specified ticket. PUT /public/tickets/{ticket_number} Description: Updates an existing ticket using its number. Parameters: ticket_number (path parameter): The number of the ticket to update. (Request Body) - Fields to update for the ticket. Returns: Updated ticket information. ``` -------------------------------- ### Comments API Operations Source: https://apidocs.neetodesk.com/apis/index APIs to create comments for the tickets. This allows adding communication or updates to existing tickets. ```APIDOC Comments API Operations: POST /public/comments Description: Creates a new comment for a ticket. Parameters: (Request Body) - Comment details, including ticket ID, author, and content. Returns: Details of the newly created comment. ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.