Listar comentários

Add MCP server to your AI tool

Allow AI tools and LLMs to interact with the API documentation portal through MCP.

MCP server URL

https://api-docs.neppo.com.br/mcp

Standard setup for AI tools providing an mcp.json file

mcp.json
{
  "Neppo API MCP server": {
    "url": "https://api-docs.neppo.com.br/mcp"
  }
}

Close
GET /ticketapi/1.0/api/v1/tickets/{ticketId}/comments

Listar comentários.

Path parameters

  • ticketId integer Required

    ID numérico do ticket

Responses

  • 200 application/json

    Requisição processada com sucesso. Retorna os dados correspondentes ao filtro informado.

    Hide response attributes Show response attributes object
    • status string
    • data object
      Hide data attributes Show data attributes object
      • content array[object]
        Hide content attributes Show content attributes object
        • id number
        • authorName string
        • text string
        • createdAt string
      • totalElements number
  • 401 application/json

    Token de autenticação ausente ou inválido. Envie o header Authorization: Bearer {token}.

    Hide response attribute Show response attribute object
    • status string
  • 404 application/json

    Recurso não encontrado para os parâmetros informados.

    Hide response attribute Show response attribute object
    • status string
GET /ticketapi/1.0/api/v1/tickets/{ticketId}/comments
curl \
 --request GET 'https://api.neppo.com.br/ticketapi/1.0/api/v1/tickets/{ticketId}/comments' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "status": "SUCCESS",
  "data": {
    "content": [
      {
        "id": 305,
        "authorName": "João da Silva",
        "text": "Verifiquei os logs e o banco de dados não respondeu no horário indicado.",
        "createdAt": "2026-02-27T10:00:00Z"
      }
    ],
    "totalElements": 1
  }
}
Response examples (401)
{
  "status": "Unauthorized"
}
Response examples (404)
{
  "status": "Not Found"
}