Get user Denylist flag

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://px-apidocs.gainsight.com/mcp

Standard setup for AI tools providing an mcp.json file

mcp.json
{
  "gainsight-px-rest-api MCP server": {
    "url": "https://px-apidocs.gainsight.com/mcp"
  }
}

Close
GET /v1/users/denylist/{identifyId}

Returns true if the user is marked as denied

Path parameters

  • identifyId string Required

    User identify id

Responses

  • 200 */*

    OK

    Hide response attributes Show response attributes object
    • denied boolean
    • identifyId string
  • 204 */*

    No Content

    Hide response attributes Show response attributes object
    • denied boolean
    • identifyId string
  • 400

    Bad request

  • 401

    Unauthorized or bad API Key

  • 403

    Access denied

  • 404

    User not found by id

  • 429

    Rate limit exceeded

GET /v1/users/denylist/{identifyId}
curl \
 --request GET 'https://api.aptrinsic.com/v1/users/denylist/{identifyId}'
Response examples (200)
{
  "denied": true,
  "identifyId": "string"
}
Response examples (204)
{
  "denied": true,
  "identifyId": "string"
}