Get Match Sectors

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://developer.trintech.com/doc/iam-api/mcp

Standard setup for AI tools providing an mcp.json file

mcp.json
"Cadency Identity Access Management MCP server": {
  "url": "https://developer.trintech.com/doc/iam-api/mcp"
}
Close
GET /sectors

This API retrieves all Match sectors.

Responses

  • 200 application/json

    Successful Response

    Hide response attributes Show response attributes object
    • id string

      The sector id.

    • name string

      The sector name.

  • 401 application/json

    Authentication Error. Invalid credentials.

    Hide response attributes Show response attributes object
    • code string
    • message string
    • description string
  • 403

    Authorization Error. Invalid role for request.

GET /sectors
curl \
 --request GET 'https://localhost:8080/sectors' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "data": [
    {
      "id": 1,
      "name": "APAC"
    },
    {
      "id": 2,
      "name": "EMEA"
    },
    {
      "id": 3,
      "name": "US"
    }
  ],
  "totalRecords": 3
}
Response examples (401)
{
  "code": "900901",
  "message": "Invalid Credentials",
  "description": "Access failure for API: /api/admin/v1.1.0, version: v1.1.0 status: (900901) - Invalid Credentials. Make sure you have provided the correct security credentials"
}