Buscar parâmetros do template HSM

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
POST /chatapi/1.0/api/v2/hsm-template/{id}/parameters

Retorna os parâmetros configurados para o template HSM identificado pelo ID informado.

Path parameters

  • id integer(int64) Required

    id

Responses

  • 200 application/json

    OK

    Hide response attributes Show response attributes object
    • hsmId integer(int64)
    • id integer(int64)
    • paramType string

      Values are TEXT, CURRENCY, DATE, MEDIA, URL, or QUICK_REPLY.

    • type string

      Values are HEADER, BODY, FOOTER, or BUTTON.

  • 201

    Created

  • 401

    Unauthorized

  • 403

    Forbidden

  • 404

    Not Found

POST /chatapi/1.0/api/v2/hsm-template/{id}/parameters
curl \
 --request POST 'https://api.neppo.com.br/chatapi/1.0/api/v2/hsm-template/{id}/parameters' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
[
  {
    "hsmId": 42,
    "id": 42,
    "paramType": "TEXT",
    "type": "HEADER"
  }
]