get_instance
Retrieve a specific Tembo Cloud instance by providing the organization ID and instance ID, enabling users to manage Tembo resources efficiently.
Instructions
Get an existing Tembo instance
Input Schema
Name | Required | Description | Default |
---|---|---|---|
instance_id | Yes | ||
org_id | Yes | Organization ID that owns the instance |
Input Schema (JSON Schema)
{
"properties": {
"instance_id": {
"type": "string"
},
"org_id": {
"description": "Organization ID that owns the instance",
"type": "string"
}
},
"required": [
"org_id",
"instance_id"
],
"type": "object"
}