Skip to main content
FuseFuse
IntegrationsTemporalActions

Get Temporal Cloud account

Get the connected Temporal Cloud account id, state, and resource version. Requires an account-scoped API key.

Agent markdown

account.get · Temporal · v1

Details

Risk
Read
Idempotency
Safe
Availability
Default
Exposure
REST, SDK, MCP
MCP hints
readOnly=true, destructive=false, idempotent=true, openWorld=true

Scopes

None

Input

Input schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false

Output

Output schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
idstringYesminLength 1; maxLength 128
resource_versionstringYesminLength 1; maxLength 256
statestringYesenum RESOURCE_STATE_UNSPECIFIED | RESOURCE_STATE_ACTIVATING | RESOURCE_STATE_ACTIVATION_FAILED | RESOURCE_STATE_ACTIVE | RESOURCE_STATE_UPDATING | RESOURCE_STATE_UPDATE_FAILED | RESOURCE_STATE_DELETING | RESOURCE_STATE_DELETE_FAILED | RESOURCE_STATE_DELETED | RESOURCE_STATE_SUSPENDED | RESOURCE_STATE_EXPIRED
async_operation_idstringNominLength 1; maxLength 256
metrics_uristringNomaxLength 512

Raw schema

Input
{
  "type": "object",
  "additionalProperties": false,
  "properties": {}
}
Output
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "id": {
      "type": "string",
      "minLength": 1,
      "maxLength": 128
    },
    "resource_version": {
      "type": "string",
      "minLength": 1,
      "maxLength": 256
    },
    "state": {
      "type": "string",
      "enum": [
        "RESOURCE_STATE_UNSPECIFIED",
        "RESOURCE_STATE_ACTIVATING",
        "RESOURCE_STATE_ACTIVATION_FAILED",
        "RESOURCE_STATE_ACTIVE",
        "RESOURCE_STATE_UPDATING",
        "RESOURCE_STATE_UPDATE_FAILED",
        "RESOURCE_STATE_DELETING",
        "RESOURCE_STATE_DELETE_FAILED",
        "RESOURCE_STATE_DELETED",
        "RESOURCE_STATE_SUSPENDED",
        "RESOURCE_STATE_EXPIRED"
      ]
    },
    "async_operation_id": {
      "type": "string",
      "minLength": 1,
      "maxLength": 256
    },
    "metrics_uri": {
      "type": "string",
      "maxLength": 512
    }
  },
  "required": [
    "id",
    "resource_version",
    "state"
  ]
}