get_domain
Retrieve domain details by specifying the provider ID and domain ID using the UseGrant MCP Server. Simplifies domain management for providers and tenants.
Instructions
Get a domain by provider and domain ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
domainId | Yes | The ID of the domain | |
providerId | Yes | The ID of the provider |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"domainId": {
"description": "The ID of the domain",
"minLength": 1,
"type": "string"
},
"providerId": {
"description": "The ID of the provider",
"minLength": 1,
"type": "string"
}
},
"required": [
"providerId",
"domainId"
],
"type": "object"
}