Skip to main content
FuseFuse
IntegrationsTemporalActions

List Temporal Cloud namespaces

List namespaces in the connected account. One page per call; map limit→pageSize and cursor→pageToken.

Agent markdown

namespaces.list · 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
limitintegerNominimum 1; maximum 100
cursorstringNominLength 1; maxLength 512
namestringNominLength 1; maxLength 39
project_idstringNominLength 1; maxLength 128

Output

Output schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
namespacesarray<object>YesmaxItems 100
namespaces[]objectYesadditionalProperties false
namespaces[].namespacestringYesminLength 2; maxLength 128
namespaces[].namestringYesminLength 2; maxLength 39; pattern ^[a-z]([a-z0-9-]*[a-z0-9])?$
namespaces[].project_idstringNominLength 1; maxLength 128
namespaces[].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
namespaces[].resource_versionstringYesminLength 1; maxLength 256
namespaces[].retention_daysintegerYesminimum 1; maximum 90
namespaces[].active_regionstringNominLength 1; maxLength 64
namespaces[].async_operation_idstringNominLength 1; maxLength 256
namespaces[].created_atstringNominLength 1; maxLength 64
namespaces[].updated_atstringNominLength 1; maxLength 64
namespaces[].enable_delete_protectionbooleanNo
namespaces[].api_key_auth_enabledbooleanNo
namespaces[].mtls_auth_enabledbooleanNo
namespaces[].endpointsobjectNoadditionalProperties false
namespaces[].endpoints.web_addressstringNomaxLength 512
namespaces[].endpoints.grpc_addressstringNomaxLength 512
namespaces[].endpoints.mtls_grpc_addressstringNomaxLength 512
namespaces[].replicasarray<object>NomaxItems 8
namespaces[].replicas[]objectYesadditionalProperties false
namespaces[].replicas[].idstringNomaxLength 128
namespaces[].replicas[].regionstringYesminLength 1; maxLength 64
namespaces[].replicas[].is_primarybooleanNo
namespaces[].replicas[].statestringNomaxLength 64
namespaces[].tagsarray<object>NomaxItems 64
namespaces[].tags[]objectYesadditionalProperties false
namespaces[].tags[].keystringYesminLength 1; maxLength 63
namespaces[].tags[].valuestringYesminLength 1; maxLength 63
next_cursorstringNominLength 1; maxLength 512

Raw schema

Input
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "limit": {
      "type": "integer",
      "minimum": 1,
      "maximum": 100
    },
    "cursor": {
      "type": "string",
      "minLength": 1,
      "maxLength": 512
    },
    "name": {
      "type": "string",
      "minLength": 1,
      "maxLength": 39
    },
    "project_id": {
      "type": "string",
      "minLength": 1,
      "maxLength": 128
    }
  }
}
Output
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "namespaces": {
      "type": "array",
      "items": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
          "namespace": {
            "type": "string",
            "minLength": 2,
            "maxLength": 128
          },
          "name": {
            "type": "string",
            "minLength": 2,
            "maxLength": 39,
            "pattern": "^[a-z]([a-z0-9-]*[a-z0-9])?$"
          },
          "project_id": {
            "type": "string",
            "minLength": 1,
            "maxLength": 128
          },
          "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"
            ]
          },
          "resource_version": {
            "type": "string",
            "minLength": 1,
            "maxLength": 256
          },
          "retention_days": {
            "type": "integer",
            "minimum": 1,
            "maximum": 90
          },
          "active_region": {
            "type": "string",
            "minLength": 1,
            "maxLength": 64
          },
          "async_operation_id": {
            "type": "string",
            "minLength": 1,
            "maxLength": 256
          },
          "created_at": {
            "type": "string",
            "minLength": 1,
            "maxLength": 64
          },
          "updated_at": {
            "type": "string",
            "minLength": 1,
            "maxLength": 64
          },
          "enable_delete_protection": {
            "type": "boolean"
          },
          "api_key_auth_enabled": {
            "type": "boolean"
          },
          "mtls_auth_enabled": {
            "type": "boolean"
          },
          "endpoints": {
            "type": "object",
            "additionalProperties": false,
            "properties": {
              "web_address": {
                "type": "string",
                "maxLength": 512
              },
              "grpc_address": {
                "type": "string",
                "maxLength": 512
              },
              "mtls_grpc_address": {
                "type": "string",
                "maxLength": 512
              }
            }
          },
          "replicas": {
            "type": "array",
            "items": {
              "type": "object",
              "additionalProperties": false,
              "properties": {
                "id": {
                  "type": "string",
                  "maxLength": 128
                },
                "region": {
                  "type": "string",
                  "minLength": 1,
                  "maxLength": 64
                },
                "is_primary": {
                  "type": "boolean"
                },
                "state": {
                  "type": "string",
                  "maxLength": 64
                }
              },
              "required": [
                "region"
              ]
            },
            "maxItems": 8
          },
          "tags": {
            "type": "array",
            "items": {
              "type": "object",
              "additionalProperties": false,
              "properties": {
                "key": {
                  "type": "string",
                  "minLength": 1,
                  "maxLength": 63
                },
                "value": {
                  "type": "string",
                  "minLength": 1,
                  "maxLength": 63
                }
              },
              "required": [
                "key",
                "value"
              ]
            },
            "maxItems": 64
          }
        },
        "required": [
          "namespace",
          "name",
          "state",
          "resource_version",
          "retention_days"
        ]
      },
      "maxItems": 100
    },
    "next_cursor": {
      "type": "string",
      "minLength": 1,
      "maxLength": 512
    }
  },
  "required": [
    "namespaces"
  ]
}