Check Phone Island token (legacy endpoint) Deprecated

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://bump.sh/nethesis/doc/nethcti-middleware/mcp

Standard setup for AI tools providing an mcp.json file

mcp.json
"NethVoice - NethCTI middleware MCP server": {
  "url": "https://bump.sh/nethesis/doc/nethcti-middleware/mcp"
}
Close
GET /authentication/phone_island_token_check

Responses

  • 200 application/json

    Token state

    Hide response attribute Show response attribute object
    • exists boolean
  • 401 application/json

    Unauthorized

    Hide response attributes Show response attributes object
    • code integer
    • message string
    • data
    • error string
GET /authentication/phone_island_token_check
curl \
 --request GET 'http://localhost:8080/authentication/phone_island_token_check' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "exists": true
}
Response examples (401)
{
  "code": 42,
  "message": "string",
  "error": "string"
}