get_tenant_provider_policy
Retrieve access policies for tenant providers by specifying tenant ID, provider ID, and policy ID. Facilitates managed access control in the UseGrant MCP Server platform.
Instructions
Get a policy for a tenant provider
Input Schema
Name | Required | Description | Default |
---|---|---|---|
policyId | Yes | The ID of the tenant provider policy | |
providerId | Yes | The ID of the tenant provider | |
tenantId | Yes | The ID of the tenant |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"policyId": {
"description": "The ID of the tenant provider policy",
"minLength": 1,
"type": "string"
},
"providerId": {
"description": "The ID of the tenant provider",
"minLength": 1,
"type": "string"
},
"tenantId": {
"description": "The ID of the tenant",
"minLength": 1,
"type": "string"
}
},
"required": [
"tenantId",
"providerId",
"policyId"
],
"type": "object"
}