Tool details
| Field | Value |
|---|---|
| Name | get_domain |
| Group | Domains |
Playground
Input schema
Input schema
{
"type": "object",
"properties": {
"project_reference": {
"type": "string",
"description": "Project ID or slug"
},
"environment_id": {
"type": "string",
"description": "Environment ID"
},
"domain_id": {
"type": "string",
"description": "Domain ID"
}
},
"required": [
"project_reference",
"environment_id",
"domain_id"
],
"additionalProperties": false,
"description": "Input schema for the get_domain tool.",
"$schema": "http://json-schema.org/draft-07/schema#"
}
Output schema
Output schema
{
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Unique identifier for the returned record."
},
"domain": {
"type": "string",
"description": "The domain associated with this tool result."
},
"environment_id": {
"type": "string",
"description": "The environment id associated with this tool result."
},
"project_id": {
"type": "string",
"description": "Project identifier associated with this result."
},
"created_at": {
"type": [
"string",
"null"
],
"description": "Creation timestamp in ISO 8601 format."
},
"updated_at": {
"type": [
"string",
"null"
],
"description": "Last update timestamp in ISO 8601 format."
}
},
"required": [
"id",
"domain",
"environment_id",
"project_id",
"created_at",
"updated_at"
],
"additionalProperties": false,
"description": "Structured result returned by the get_domain tool.",
"$schema": "http://json-schema.org/draft-07/schema#"
}