Retrieve a Policy User Assignment

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://apidocs.zerionsoftware.com/doc/zerion-identity/mcp

Standard setup for AI tools providing an mcp.json file

mcp.json
{
  "Zerion Identity MCP server": {
    "url": "https://apidocs.zerionsoftware.com/doc/zerion-identity/mcp"
  }
}

Close
GET /policies/{policy_id}/users

Path parameters

  • policy_id string Required

    id of the policy

Responses

  • 200 application/json

    OK

    Hide response attributes Show response attributes object
    • id string Required
    • username string Required
GET /policies/{policy_id}/users
curl \
 --request GET 'https://identity.zerionsoftware.com/v1/policies/self/users' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "id": "6e72b386ac43d1414e59188d",
  "username": "demo_user"
}