KosmoKrator

productivity

Temporal CLI for AI Agents

Use the Temporal CLI from KosmoKrator to call Temporal tools headlessly, return JSON, inspect schemas, and automate workflows from coding agents, scripts, and CI.

Temporal CLI Setup

Temporal can be configured headlessly with `kosmokrator integrations:configure temporal`.

Install, configure, and verify
# Install KosmoKrator first if it is not available on PATH.
curl -fsSL https://raw.githubusercontent.com/OpenCompanyApp/kosmokrator/main/install.sh | bash

# Configure and verify this integration.
kosmokrator integrations:configure temporal --set api_token="$TEMPORAL_API_TOKEN" --set url="$TEMPORAL_URL" --enable --read allow --write ask --json
kosmokrator integrations:doctor temporal --json
kosmokrator integrations:status --json

Credentials

Authentication type: API token api_token. Configure credentials once, then reuse the same stored profile from scripts, coding CLIs, Lua, and MCP.

KeyEnv varTypeRequiredLabel
api_token TEMPORAL_API_TOKEN Secret secret yes API Token
url TEMPORAL_URL URL url yes HTTP API Endpoint URL

Command Patterns

The generic command is stable across every integration. The provider shortcut is shorter for humans.

Generic CLI call
kosmo integrations:call temporal.temporal_get_cluster_info '{}' --json
Provider shortcut
kosmo integrations:temporal temporal_get_cluster_info '{}' --json

Discovery

These commands return structured output for coding agents that need to inspect capabilities before choosing a function.

Discovery commands
kosmo integrations:docs temporal --json
kosmo integrations:docs temporal.temporal_get_cluster_info --json
kosmo integrations:schema temporal.temporal_get_cluster_info --json
kosmo integrations:search "Temporal" --json
kosmo integrations:list --json

Automation Contexts

The same configured command surface works in these environments. The command does not change unless the host wrapper, credentials, or permissions change.

CLI Functions

Every function below can be called headlessly. Commands are highlighted, copyable, and scroll horizontally when payloads are long.

temporal.temporal_get_cluster_info

Get cluster info Official Temporal endpoint: GET /api/v1/cluster-info GetClusterInfo returns information about temporal cluster

Read read
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_get_cluster_info '{}' --json
Shortcut
kosmo integrations:temporal temporal_get_cluster_info '{}' --json

temporal.temporal_list_namespaces

List namespaces Official Temporal endpoint: GET /api/v1/namespaces ListNamespaces returns the information and configuration for all namespaces.

Read read
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_list_namespaces '{}' --json
Shortcut
kosmo integrations:temporal temporal_list_namespaces '{}' --json

temporal.temporal_register_namespace

Register namespace Official Temporal endpoint: POST /api/v1/namespaces RegisterNamespace creates a new namespace which can be used as a container for all resources. A Namespace is a top level entity within Temporal, and is used as a contain

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_register_namespace '{}' --json
Shortcut
kosmo integrations:temporal temporal_register_namespace '{}' --json

temporal.temporal_describe_namespace

Describe namespace Official Temporal endpoint: GET /api/v1/namespaces/{namespace} DescribeNamespace returns the information and configuration for a registered namespace.

Read read
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_describe_namespace '{}' --json
Shortcut
kosmo integrations:temporal temporal_describe_namespace '{}' --json

temporal.temporal_list_activity_executions

List activity executions Official Temporal endpoint: GET /api/v1/namespaces/{namespace}/activities ListActivityExecutions is a visibility API to list activity executions in a specific namespace.

Read read
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_list_activity_executions '{}' --json
Shortcut
kosmo integrations:temporal temporal_list_activity_executions '{}' --json

temporal.temporal_pause_activity

Pause activity Official Temporal endpoint: POST /api/v1/namespaces/{namespace}/activities-deprecated/pause PauseActivity pauses the execution of an activity specified by its ID or type. If there are multiple pending activities of the provid

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_pause_activity '{}' --json
Shortcut
kosmo integrations:temporal temporal_pause_activity '{}' --json

temporal.temporal_reset_activity

Reset activity Official Temporal endpoint: POST /api/v1/namespaces/{namespace}/activities-deprecated/reset ResetActivity resets the execution of an activity specified by its ID or type. If there are multiple pending activities of the provid

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_reset_activity '{}' --json
Shortcut
kosmo integrations:temporal temporal_reset_activity '{}' --json

temporal.temporal_unpause_activity

Unpause activity Official Temporal endpoint: POST /api/v1/namespaces/{namespace}/activities-deprecated/unpause UnpauseActivity unpauses the execution of an activity specified by its ID or type. If there are multiple pending activities of th

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_unpause_activity '{}' --json
Shortcut
kosmo integrations:temporal temporal_unpause_activity '{}' --json

temporal.temporal_update_activity_options

Update activity options Official Temporal endpoint: POST /api/v1/namespaces/{namespace}/activities-deprecated/update-options UpdateActivityOptions is called by the client to update the options of an activity by its ID or type. If there are

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_update_activity_options '{}' --json
Shortcut
kosmo integrations:temporal temporal_update_activity_options '{}' --json

temporal.temporal_describe_activity_execution

Describe activity execution Official Temporal endpoint: GET /api/v1/namespaces/{namespace}/activities/{activityId} DescribeActivityExecution returns information about an activity execution. It can be used to: - Get current activity info wit

Read read
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_describe_activity_execution '{}' --json
Shortcut
kosmo integrations:temporal temporal_describe_activity_execution '{}' --json

temporal.temporal_start_activity_execution

Start activity execution Official Temporal endpoint: POST /api/v1/namespaces/{namespace}/activities/{activityId} StartActivityExecution starts a new activity execution. Returns an `ActivityExecutionAlreadyStarted` error if an instance alrea

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_start_activity_execution '{}' --json
Shortcut
kosmo integrations:temporal temporal_start_activity_execution '{}' --json

temporal.temporal_request_cancel_activity_execution

Request cancel activity execution Official Temporal endpoint: POST /api/v1/namespaces/{namespace}/activities/{activityId}/cancel RequestCancelActivityExecution requests cancellation of an activity execution. Cancellation is cooperative: thi

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_request_cancel_activity_execution '{}' --json
Shortcut
kosmo integrations:temporal temporal_request_cancel_activity_execution '{}' --json

temporal.temporal_respond_activity_task_completed_by_id

Respond activity task completed by id Official Temporal endpoint: POST /api/v1/namespaces/{namespace}/activities/{activityId}/complete See `RespondActivityTaskCompleted`. This version allows clients to record completions by namespace/workfl

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_respond_activity_task_completed_by_id '{}' --json
Shortcut
kosmo integrations:temporal temporal_respond_activity_task_completed_by_id '{}' --json

temporal.temporal_respond_activity_task_failed_by_id

Respond activity task failed by id Official Temporal endpoint: POST /api/v1/namespaces/{namespace}/activities/{activityId}/fail See `RecordActivityTaskFailed`. This version allows clients to record failures by namespace/workflow id/activity

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_respond_activity_task_failed_by_id '{}' --json
Shortcut
kosmo integrations:temporal temporal_respond_activity_task_failed_by_id '{}' --json

temporal.temporal_record_activity_task_heartbeat_by_id

Record activity task heartbeat by id Official Temporal endpoint: POST /api/v1/namespaces/{namespace}/activities/{activityId}/heartbeat See `RecordActivityTaskHeartbeat`. This version allows clients to record heartbeats by namespace/workflow

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_record_activity_task_heartbeat_by_id '{}' --json
Shortcut
kosmo integrations:temporal temporal_record_activity_task_heartbeat_by_id '{}' --json

temporal.temporal_poll_activity_execution

Poll activity execution Official Temporal endpoint: GET /api/v1/namespaces/{namespace}/activities/{activityId}/outcome PollActivityExecution long-polls for an activity execution to complete and returns the outcome (result or failure).

Read read
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_poll_activity_execution '{}' --json
Shortcut
kosmo integrations:temporal temporal_poll_activity_execution '{}' --json

temporal.temporal_pause_activity_execution

Pause activity execution Official Temporal endpoint: POST /api/v1/namespaces/{namespace}/activities/{activityId}/pause PauseActivityExecution pauses the execution of an activity specified by its ID. This API can be used to target a workflow

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_pause_activity_execution '{}' --json
Shortcut
kosmo integrations:temporal temporal_pause_activity_execution '{}' --json

temporal.temporal_reset_activity_execution

Reset activity execution Official Temporal endpoint: POST /api/v1/namespaces/{namespace}/activities/{activityId}/reset ResetActivityExecution resets the execution of an activity specified by its ID. This API can be used to target a workflow

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_reset_activity_execution '{}' --json
Shortcut
kosmo integrations:temporal temporal_reset_activity_execution '{}' --json

temporal.temporal_respond_activity_task_canceled_by_id

Respond activity task canceled by id Official Temporal endpoint: POST /api/v1/namespaces/{namespace}/activities/{activityId}/resolve-as-canceled See `RespondActivityTaskCanceled`. This version allows clients to record failures by namespace/

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_respond_activity_task_canceled_by_id '{}' --json
Shortcut
kosmo integrations:temporal temporal_respond_activity_task_canceled_by_id '{}' --json

temporal.temporal_terminate_activity_execution

Terminate activity execution Official Temporal endpoint: POST /api/v1/namespaces/{namespace}/activities/{activityId}/terminate TerminateActivityExecution terminates an existing activity execution immediately. Termination does not reach the

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_terminate_activity_execution '{}' --json
Shortcut
kosmo integrations:temporal temporal_terminate_activity_execution '{}' --json

temporal.temporal_unpause_activity_execution

Unpause activity execution Official Temporal endpoint: POST /api/v1/namespaces/{namespace}/activities/{activityId}/unpause UnpauseActivityExecution unpauses the execution of an activity specified by its ID. This API can be used to target a

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_unpause_activity_execution '{}' --json
Shortcut
kosmo integrations:temporal temporal_unpause_activity_execution '{}' --json

temporal.temporal_update_activity_execution_options

Update activity execution options Official Temporal endpoint: POST /api/v1/namespaces/{namespace}/activities/{activityId}/update-options UpdateActivityExecutionOptions is called by the client to update the options of an activity by its ID.

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_update_activity_execution_options '{}' --json
Shortcut
kosmo integrations:temporal temporal_update_activity_execution_options '{}' --json

temporal.temporal_respond_activity_task_completed

Respond activity task completed Official Temporal endpoint: POST /api/v1/namespaces/{namespace}/activity-complete RespondActivityTaskCompleted is called by workers when they successfully complete an activity task. For workflow activities, t

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_respond_activity_task_completed '{}' --json
Shortcut
kosmo integrations:temporal temporal_respond_activity_task_completed '{}' --json

temporal.temporal_count_activity_executions

Count activity executions Official Temporal endpoint: GET /api/v1/namespaces/{namespace}/activity-count CountActivityExecutions is a visibility API to count activity executions in a specific namespace.

Read read
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_count_activity_executions '{}' --json
Shortcut
kosmo integrations:temporal temporal_count_activity_executions '{}' --json

temporal.temporal_respond_activity_task_failed

Respond activity task failed Official Temporal endpoint: POST /api/v1/namespaces/{namespace}/activity-fail RespondActivityTaskFailed is called by workers when processing an activity task fails. This results in a new `ACTIVITY_TASK_FAILED` e

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_respond_activity_task_failed '{}' --json
Shortcut
kosmo integrations:temporal temporal_respond_activity_task_failed '{}' --json

temporal.temporal_record_activity_task_heartbeat

Record activity task heartbeat Official Temporal endpoint: POST /api/v1/namespaces/{namespace}/activity-heartbeat RecordActivityTaskHeartbeat is optionally called by workers while they execute activities. If a worker fails to heartbeat with

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_record_activity_task_heartbeat '{}' --json
Shortcut
kosmo integrations:temporal temporal_record_activity_task_heartbeat '{}' --json

temporal.temporal_respond_activity_task_canceled

Respond activity task canceled Official Temporal endpoint: POST /api/v1/namespaces/{namespace}/activity-resolve-as-canceled RespondActivityTaskFailed is called by workers when processing an activity task fails. For workflow activities, this

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_respond_activity_task_canceled '{}' --json
Shortcut
kosmo integrations:temporal temporal_respond_activity_task_canceled '{}' --json

temporal.temporal_list_archived_workflow_executions

List archived workflow executions Official Temporal endpoint: GET /api/v1/namespaces/{namespace}/archived-workflows ListArchivedWorkflowExecutions is a visibility API to list archived workflow executions in a specific namespace.

Read read
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_list_archived_workflow_executions '{}' --json
Shortcut
kosmo integrations:temporal temporal_list_archived_workflow_executions '{}' --json

temporal.temporal_list_batch_operations

List batch operations Official Temporal endpoint: GET /api/v1/namespaces/{namespace}/batch-operations ListBatchOperations returns a list of batch operations

Read read
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_list_batch_operations '{}' --json
Shortcut
kosmo integrations:temporal temporal_list_batch_operations '{}' --json

temporal.temporal_describe_batch_operation

Describe batch operation Official Temporal endpoint: GET /api/v1/namespaces/{namespace}/batch-operations/{jobId} DescribeBatchOperation returns the information about a batch operation

Read read
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_describe_batch_operation '{}' --json
Shortcut
kosmo integrations:temporal temporal_describe_batch_operation '{}' --json

temporal.temporal_start_batch_operation

Start batch operation Official Temporal endpoint: POST /api/v1/namespaces/{namespace}/batch-operations/{jobId} StartBatchOperation starts a new batch operation

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_start_batch_operation '{}' --json
Shortcut
kosmo integrations:temporal temporal_start_batch_operation '{}' --json

temporal.temporal_stop_batch_operation

Stop batch operation Official Temporal endpoint: POST /api/v1/namespaces/{namespace}/batch-operations/{jobId}/stop StopBatchOperation stops a batch operation

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_stop_batch_operation '{}' --json
Shortcut
kosmo integrations:temporal temporal_stop_batch_operation '{}' --json

temporal.temporal_set_current_deployment

Set current deployment Official Temporal endpoint: POST /api/v1/namespaces/{namespace}/current-deployment/{deployment.series_name} Sets a deployment as the current deployment for its deployment series. Can optionally update the metadata of

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_set_current_deployment '{}' --json
Shortcut
kosmo integrations:temporal temporal_set_current_deployment '{}' --json

temporal.temporal_get_current_deployment

Get current deployment Official Temporal endpoint: GET /api/v1/namespaces/{namespace}/current-deployment/{seriesName} Returns the current deployment (and its info) for a given deployment series. Experimental. This API might significantly ch

Read read
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_get_current_deployment '{}' --json
Shortcut
kosmo integrations:temporal temporal_get_current_deployment '{}' --json

temporal.temporal_list_deployments

List deployments Official Temporal endpoint: GET /api/v1/namespaces/{namespace}/deployments Lists worker deployments in the namespace. Optionally can filter based on deployment series name. Experimental. This API might significantly change

Read read
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_list_deployments '{}' --json
Shortcut
kosmo integrations:temporal temporal_list_deployments '{}' --json

temporal.temporal_describe_deployment

Describe deployment Official Temporal endpoint: GET /api/v1/namespaces/{namespace}/deployments/{deployment.series_name}/{deployment.build_id} Describes a worker deployment. Experimental. This API might significantly change or be removed in

Read read
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_describe_deployment '{}' --json
Shortcut
kosmo integrations:temporal temporal_describe_deployment '{}' --json

temporal.temporal_get_deployment_reachability

Get deployment reachability Official Temporal endpoint: GET /api/v1/namespaces/{namespace}/deployments/{deployment.series_name}/{deployment.build_id}/reachability Returns the reachability level of a worker deployment to help users decide wh

Read read
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_get_deployment_reachability '{}' --json
Shortcut
kosmo integrations:temporal temporal_get_deployment_reachability '{}' --json

temporal.temporal_count_nexus_operation_executions

Count nexus operation executions Official Temporal endpoint: GET /api/v1/namespaces/{namespace}/nexus-operation-count CountNexusOperationExecutions is a visibility API to count Nexus operations in a specific namespace.

Read read
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_count_nexus_operation_executions '{}' --json
Shortcut
kosmo integrations:temporal temporal_count_nexus_operation_executions '{}' --json

temporal.temporal_list_nexus_operation_executions

List nexus operation executions Official Temporal endpoint: GET /api/v1/namespaces/{namespace}/nexus-operations ListNexusOperationExecutions is a visibility API to list Nexus operations in a specific namespace.

Read read
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_list_nexus_operation_executions '{}' --json
Shortcut
kosmo integrations:temporal temporal_list_nexus_operation_executions '{}' --json

temporal.temporal_describe_nexus_operation_execution

Describe nexus operation execution Official Temporal endpoint: GET /api/v1/namespaces/{namespace}/nexus-operations/{operationId} DescribeNexusOperationExecution returns information about a Nexus operation. Supported use cases include: - Get

Read read
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_describe_nexus_operation_execution '{}' --json
Shortcut
kosmo integrations:temporal temporal_describe_nexus_operation_execution '{}' --json

temporal.temporal_start_nexus_operation_execution

Start nexus operation execution Official Temporal endpoint: POST /api/v1/namespaces/{namespace}/nexus-operations/{operationId} StartNexusOperationExecution starts a new Nexus operation. Returns a `NexusOperationExecutionAlreadyStarted` erro

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_start_nexus_operation_execution '{}' --json
Shortcut
kosmo integrations:temporal temporal_start_nexus_operation_execution '{}' --json

temporal.temporal_request_cancel_nexus_operation_execution

Request cancel nexus operation execution Official Temporal endpoint: POST /api/v1/namespaces/{namespace}/nexus-operations/{operationId}/cancel RequestCancelNexusOperationExecution requests cancellation of a Nexus operation. Requesting to ca

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_request_cancel_nexus_operation_execution '{}' --json
Shortcut
kosmo integrations:temporal temporal_request_cancel_nexus_operation_execution '{}' --json

temporal.temporal_poll_nexus_operation_execution

Poll nexus operation execution Official Temporal endpoint: GET /api/v1/namespaces/{namespace}/nexus-operations/{operationId}/poll PollNexusOperationExecution long-polls for a Nexus operation for a given wait stage to complete and returns th

Read read
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_poll_nexus_operation_execution '{}' --json
Shortcut
kosmo integrations:temporal temporal_poll_nexus_operation_execution '{}' --json

temporal.temporal_terminate_nexus_operation_execution

Terminate nexus operation execution Official Temporal endpoint: POST /api/v1/namespaces/{namespace}/nexus-operations/{operationId}/terminate TerminateNexusOperationExecution terminates an existing Nexus operation immediately. Termination ha

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_terminate_nexus_operation_execution '{}' --json
Shortcut
kosmo integrations:temporal temporal_terminate_nexus_operation_execution '{}' --json

temporal.temporal_count_schedules

Count schedules Official Temporal endpoint: GET /api/v1/namespaces/{namespace}/schedule-count CountSchedules is a visibility API to count schedules in a specific namespace.

Read read
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_count_schedules '{}' --json
Shortcut
kosmo integrations:temporal temporal_count_schedules '{}' --json

temporal.temporal_list_schedules

List schedules Official Temporal endpoint: GET /api/v1/namespaces/{namespace}/schedules List all schedules in a namespace.

Read read
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_list_schedules '{}' --json
Shortcut
kosmo integrations:temporal temporal_list_schedules '{}' --json

temporal.temporal_describe_schedule

Describe schedule Official Temporal endpoint: GET /api/v1/namespaces/{namespace}/schedules/{scheduleId} Returns the schedule description and current state of an existing schedule.

Read read
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_describe_schedule '{}' --json
Shortcut
kosmo integrations:temporal temporal_describe_schedule '{}' --json

temporal.temporal_create_schedule

Create schedule Official Temporal endpoint: POST /api/v1/namespaces/{namespace}/schedules/{scheduleId} Creates a new schedule.

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_create_schedule '{}' --json
Shortcut
kosmo integrations:temporal temporal_create_schedule '{}' --json

temporal.temporal_delete_schedule

Delete schedule Official Temporal endpoint: DELETE /api/v1/namespaces/{namespace}/schedules/{scheduleId} Deletes a schedule, removing it from the system.

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_delete_schedule '{}' --json
Shortcut
kosmo integrations:temporal temporal_delete_schedule '{}' --json

temporal.temporal_list_schedule_matching_times

List schedule matching times Official Temporal endpoint: GET /api/v1/namespaces/{namespace}/schedules/{scheduleId}/matching-times Lists matching times within a range.

Read read
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_list_schedule_matching_times '{}' --json
Shortcut
kosmo integrations:temporal temporal_list_schedule_matching_times '{}' --json

temporal.temporal_patch_schedule

Patch schedule Official Temporal endpoint: POST /api/v1/namespaces/{namespace}/schedules/{scheduleId}/patch Makes a specific change to a schedule or triggers an immediate action.

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_patch_schedule '{}' --json
Shortcut
kosmo integrations:temporal temporal_patch_schedule '{}' --json

temporal.temporal_update_schedule

Update schedule Official Temporal endpoint: POST /api/v1/namespaces/{namespace}/schedules/{scheduleId}/update Changes the configuration or state of an existing schedule.

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_update_schedule '{}' --json
Shortcut
kosmo integrations:temporal temporal_update_schedule '{}' --json

temporal.temporal_list_search_attributes

List search attributes Official Temporal endpoint: GET /api/v1/namespaces/{namespace}/search-attributes ListSearchAttributes returns comprehensive information about search attributes.

Read read
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_list_search_attributes '{}' --json
Shortcut
kosmo integrations:temporal temporal_list_search_attributes '{}' --json

temporal.temporal_update_task_queue_config

Update task queue config Official Temporal endpoint: POST /api/v1/namespaces/{namespace}/task-queues/{taskQueue}/update-config Updates task queue configuration. For the overall queue rate limit: the rate limit set by this api overrides the

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_update_task_queue_config '{}' --json
Shortcut
kosmo integrations:temporal temporal_update_task_queue_config '{}' --json

temporal.temporal_get_worker_build_id_compatibility

Get worker build id compatibility Official Temporal endpoint: GET /api/v1/namespaces/{namespace}/task-queues/{taskQueue}/worker-build-id-compatibility Deprecated. Use `GetWorkerVersioningRules`. Fetches the worker build id versioning sets f

Read read
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_get_worker_build_id_compatibility '{}' --json
Shortcut
kosmo integrations:temporal temporal_get_worker_build_id_compatibility '{}' --json

temporal.temporal_get_worker_versioning_rules

Get worker versioning rules Official Temporal endpoint: GET /api/v1/namespaces/{namespace}/task-queues/{taskQueue}/worker-versioning-rules Fetches the Build ID assignment and redirect rules for a Task Queue. WARNING: Worker Versioning is no

Read read
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_get_worker_versioning_rules '{}' --json
Shortcut
kosmo integrations:temporal temporal_get_worker_versioning_rules '{}' --json

temporal.temporal_describe_task_queue

Describe task queue Official Temporal endpoint: GET /api/v1/namespaces/{namespace}/task-queues/{task_queue.name} DescribeTaskQueue returns the following information about the target task queue, broken down by Build ID: - List of pollers - W

Read read
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_describe_task_queue '{}' --json
Shortcut
kosmo integrations:temporal temporal_describe_task_queue '{}' --json

temporal.temporal_update_namespace

Update namespace Official Temporal endpoint: POST /api/v1/namespaces/{namespace}/update UpdateNamespace is used to update the information and configuration of a registered namespace.

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_update_namespace '{}' --json
Shortcut
kosmo integrations:temporal temporal_update_namespace '{}' --json

temporal.temporal_create_worker_deployment_version

Create worker deployment version Official Temporal endpoint: POST /api/v1/namespaces/{namespace}/worker-deployment-versions/{deployment_version.deployment_name} Creates a new Worker Deployment Version. Experimental. This API might significa

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_create_worker_deployment_version '{}' --json
Shortcut
kosmo integrations:temporal temporal_create_worker_deployment_version '{}' --json

temporal.temporal_describe_worker_deployment_version

Describe worker deployment version Official Temporal endpoint: GET /api/v1/namespaces/{namespace}/worker-deployment-versions/{deployment_version.deployment_name}/{deployment_version.build_id} Describes a worker deployment version. Experimen

Read read
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_describe_worker_deployment_version '{}' --json
Shortcut
kosmo integrations:temporal temporal_describe_worker_deployment_version '{}' --json

temporal.temporal_delete_worker_deployment_version

Delete worker deployment version Official Temporal endpoint: DELETE /api/v1/namespaces/{namespace}/worker-deployment-versions/{deployment_version.deployment_name}/{deployment_version.build_id} Used for manual deletion of Versions. User can

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_delete_worker_deployment_version '{}' --json
Shortcut
kosmo integrations:temporal temporal_delete_worker_deployment_version '{}' --json

temporal.temporal_update_worker_deployment_version_compute_config

Update worker deployment version compute config Official Temporal endpoint: POST /api/v1/namespaces/{namespace}/worker-deployment-versions/{deployment_version.deployment_name}/{deployment_version.build_id}/update-compute-config Updates the

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_update_worker_deployment_version_compute_config '{}' --json
Shortcut
kosmo integrations:temporal temporal_update_worker_deployment_version_compute_config '{}' --json

temporal.temporal_update_worker_deployment_version_metadata

Update worker deployment version metadata Official Temporal endpoint: POST /api/v1/namespaces/{namespace}/worker-deployment-versions/{deployment_version.deployment_name}/{deployment_version.build_id}/update-metadata Updates the user-given m

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_update_worker_deployment_version_metadata '{}' --json
Shortcut
kosmo integrations:temporal temporal_update_worker_deployment_version_metadata '{}' --json

temporal.temporal_validate_worker_deployment_version_compute_config

Validate worker deployment version compute config Official Temporal endpoint: POST /api/v1/namespaces/{namespace}/worker-deployment-versions/{deployment_version.deployment_name}/{deployment_version.build_id}/validate-compute-config Validate

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_validate_worker_deployment_version_compute_config '{}' --json
Shortcut
kosmo integrations:temporal temporal_validate_worker_deployment_version_compute_config '{}' --json

temporal.temporal_list_worker_deployments

List worker deployments Official Temporal endpoint: GET /api/v1/namespaces/{namespace}/worker-deployments Lists all Worker Deployments that are tracked in the Namespace. Experimental. This API might significantly change or be removed in a f

Read read
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_list_worker_deployments '{}' --json
Shortcut
kosmo integrations:temporal temporal_list_worker_deployments '{}' --json

temporal.temporal_describe_worker_deployment

Describe worker deployment Official Temporal endpoint: GET /api/v1/namespaces/{namespace}/worker-deployments/{deploymentName} Describes a Worker Deployment. Experimental. This API might significantly change or be removed in a future release

Read read
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_describe_worker_deployment '{}' --json
Shortcut
kosmo integrations:temporal temporal_describe_worker_deployment '{}' --json

temporal.temporal_create_worker_deployment

Create worker deployment Official Temporal endpoint: POST /api/v1/namespaces/{namespace}/worker-deployments/{deploymentName} Creates a new Worker Deployment. Experimental. This API might significantly change or be removed in a future releas

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_create_worker_deployment '{}' --json
Shortcut
kosmo integrations:temporal temporal_create_worker_deployment '{}' --json

temporal.temporal_delete_worker_deployment

Delete worker deployment Official Temporal endpoint: DELETE /api/v1/namespaces/{namespace}/worker-deployments/{deploymentName} Deletes records of (an old) Deployment. A deployment can only be deleted if it has no Version in it. Experimental

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_delete_worker_deployment '{}' --json
Shortcut
kosmo integrations:temporal temporal_delete_worker_deployment '{}' --json

temporal.temporal_set_worker_deployment_current_version

Set worker deployment current version Official Temporal endpoint: POST /api/v1/namespaces/{namespace}/worker-deployments/{deploymentName}/set-current-version Set/unset the Current Version of a Worker Deployment. Automatically unsets the Ram

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_set_worker_deployment_current_version '{}' --json
Shortcut
kosmo integrations:temporal temporal_set_worker_deployment_current_version '{}' --json

temporal.temporal_set_worker_deployment_manager

Set worker deployment manager Official Temporal endpoint: POST /api/v1/namespaces/{namespace}/worker-deployments/{deploymentName}/set-manager Set/unset the ManagerIdentity of a Worker Deployment. Experimental. This API might significantly c

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_set_worker_deployment_manager '{}' --json
Shortcut
kosmo integrations:temporal temporal_set_worker_deployment_manager '{}' --json

temporal.temporal_set_worker_deployment_ramping_version

Set worker deployment ramping version Official Temporal endpoint: POST /api/v1/namespaces/{namespace}/worker-deployments/{deploymentName}/set-ramping-version Set/unset the Ramping Version of a Worker Deployment and its ramp percentage. Can

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_set_worker_deployment_ramping_version '{}' --json
Shortcut
kosmo integrations:temporal temporal_set_worker_deployment_ramping_version '{}' --json

temporal.temporal_get_worker_task_reachability

Get worker task reachability Official Temporal endpoint: GET /api/v1/namespaces/{namespace}/worker-task-reachability Deprecated. Use `DescribeTaskQueue`. Fetches task reachability to determine whether a worker may be retired. The request ma

Read read
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_get_worker_task_reachability '{}' --json
Shortcut
kosmo integrations:temporal temporal_get_worker_task_reachability '{}' --json

temporal.temporal_list_workers

List workers Official Temporal endpoint: GET /api/v1/namespaces/{namespace}/workers ListWorkers is a visibility API to list worker status information in a specific namespace.

Read read
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_list_workers '{}' --json
Shortcut
kosmo integrations:temporal temporal_list_workers '{}' --json

temporal.temporal_describe_worker

Describe worker Official Temporal endpoint: GET /api/v1/namespaces/{namespace}/workers/describe/{workerInstanceKey} DescribeWorker returns information about the specified worker.

Read read
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_describe_worker '{}' --json
Shortcut
kosmo integrations:temporal temporal_describe_worker '{}' --json

temporal.temporal_fetch_worker_config

Fetch worker config Official Temporal endpoint: POST /api/v1/namespaces/{namespace}/workers/fetch-config FetchWorkerConfig returns the worker configuration for a specific worker.

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_fetch_worker_config '{}' --json
Shortcut
kosmo integrations:temporal temporal_fetch_worker_config '{}' --json

temporal.temporal_record_worker_heartbeat

Record worker heartbeat Official Temporal endpoint: POST /api/v1/namespaces/{namespace}/workers/heartbeat WorkerHeartbeat receive heartbeat request from the worker.

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_record_worker_heartbeat '{}' --json
Shortcut
kosmo integrations:temporal temporal_record_worker_heartbeat '{}' --json

temporal.temporal_update_worker_config

Update worker config Official Temporal endpoint: POST /api/v1/namespaces/{namespace}/workers/update-config UpdateWorkerConfig updates the worker configuration of one or more workers. Can be used to partially update the worker configuration.

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_update_worker_config '{}' --json
Shortcut
kosmo integrations:temporal temporal_update_worker_config '{}' --json

temporal.temporal_count_workflow_executions

Count workflow executions Official Temporal endpoint: GET /api/v1/namespaces/{namespace}/workflow-count CountWorkflowExecutions is a visibility API to count of workflow executions in a specific namespace.

Read read
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_count_workflow_executions '{}' --json
Shortcut
kosmo integrations:temporal temporal_count_workflow_executions '{}' --json

temporal.temporal_list_workflow_rules

List workflow rules Official Temporal endpoint: GET /api/v1/namespaces/{namespace}/workflow-rules Return all namespace workflow rules

Read read
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_list_workflow_rules '{}' --json
Shortcut
kosmo integrations:temporal temporal_list_workflow_rules '{}' --json

temporal.temporal_create_workflow_rule

Create workflow rule Official Temporal endpoint: POST /api/v1/namespaces/{namespace}/workflow-rules Create a new workflow rule. The rules are used to control the workflow execution. The rule will be applied to all running and new workflows

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_create_workflow_rule '{}' --json
Shortcut
kosmo integrations:temporal temporal_create_workflow_rule '{}' --json

temporal.temporal_describe_workflow_rule

Describe workflow rule Official Temporal endpoint: GET /api/v1/namespaces/{namespace}/workflow-rules/{ruleId} DescribeWorkflowRule return the rule specification for existing rule id. If there is no rule with such id - NOT FOUND error will b

Read read
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_describe_workflow_rule '{}' --json
Shortcut
kosmo integrations:temporal temporal_describe_workflow_rule '{}' --json

temporal.temporal_delete_workflow_rule

Delete workflow rule Official Temporal endpoint: DELETE /api/v1/namespaces/{namespace}/workflow-rules/{ruleId} Delete rule by rule id

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_delete_workflow_rule '{}' --json
Shortcut
kosmo integrations:temporal temporal_delete_workflow_rule '{}' --json

temporal.temporal_list_workflow_executions

List workflow executions Official Temporal endpoint: GET /api/v1/namespaces/{namespace}/workflows ListWorkflowExecutions is a visibility API to list workflow executions in a specific namespace.

Read read
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_list_workflow_executions '{}' --json
Shortcut
kosmo integrations:temporal temporal_list_workflow_executions '{}' --json

temporal.temporal_describe_workflow_execution

Describe workflow execution Official Temporal endpoint: GET /api/v1/namespaces/{namespace}/workflows/{execution.workflow_id} DescribeWorkflowExecution returns information about the specified workflow execution.

Read read
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_describe_workflow_execution '{}' --json
Shortcut
kosmo integrations:temporal temporal_describe_workflow_execution '{}' --json

temporal.temporal_get_workflow_execution_history

Get workflow execution history Official Temporal endpoint: GET /api/v1/namespaces/{namespace}/workflows/{execution.workflow_id}/history GetWorkflowExecutionHistory returns the history of specified workflow execution. Fails with `NotFound` i

Read read
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_get_workflow_execution_history '{}' --json
Shortcut
kosmo integrations:temporal temporal_get_workflow_execution_history '{}' --json

temporal.temporal_get_workflow_execution_history_reverse

Get workflow execution history reverse Official Temporal endpoint: GET /api/v1/namespaces/{namespace}/workflows/{execution.workflow_id}/history-reverse GetWorkflowExecutionHistoryReverse returns the history of specified workflow execution i

Read read
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_get_workflow_execution_history_reverse '{}' --json
Shortcut
kosmo integrations:temporal temporal_get_workflow_execution_history_reverse '{}' --json

temporal.temporal_query_workflow

Query workflow Official Temporal endpoint: POST /api/v1/namespaces/{namespace}/workflows/{execution.workflow_id}/query/{query.query_type} QueryWorkflow requests a query be executed for a specified workflow execution.

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_query_workflow '{}' --json
Shortcut
kosmo integrations:temporal temporal_query_workflow '{}' --json

temporal.temporal_trigger_workflow_rule

Trigger workflow rule Official Temporal endpoint: POST /api/v1/namespaces/{namespace}/workflows/{execution.workflow_id}/trigger-rule TriggerWorkflowRule allows to: * trigger existing rule for a specific workflow execution; * trigger rule fo

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_trigger_workflow_rule '{}' --json
Shortcut
kosmo integrations:temporal temporal_trigger_workflow_rule '{}' --json

temporal.temporal_start_workflow_execution

Start workflow execution Official Temporal endpoint: POST /api/v1/namespaces/{namespace}/workflows/{workflowId} StartWorkflowExecution starts a new workflow execution. It will create the execution with a `WORKFLOW_EXECUTION_STARTED` event i

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_start_workflow_execution '{}' --json
Shortcut
kosmo integrations:temporal temporal_start_workflow_execution '{}' --json

temporal.temporal_respond_activity_task_completed_by_id_2

Respond activity task completed by id Official Temporal endpoint: POST /api/v1/namespaces/{namespace}/workflows/{workflowId}/activities/{activityId}/complete See `RespondActivityTaskCompleted`. This version allows clients to record completi

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_respond_activity_task_completed_by_id_2 '{}' --json
Shortcut
kosmo integrations:temporal temporal_respond_activity_task_completed_by_id_2 '{}' --json

temporal.temporal_respond_activity_task_failed_by_id_2

Respond activity task failed by id Official Temporal endpoint: POST /api/v1/namespaces/{namespace}/workflows/{workflowId}/activities/{activityId}/fail See `RecordActivityTaskFailed`. This version allows clients to record failures by namespa

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_respond_activity_task_failed_by_id_2 '{}' --json
Shortcut
kosmo integrations:temporal temporal_respond_activity_task_failed_by_id_2 '{}' --json

temporal.temporal_record_activity_task_heartbeat_by_id_2

Record activity task heartbeat by id Official Temporal endpoint: POST /api/v1/namespaces/{namespace}/workflows/{workflowId}/activities/{activityId}/heartbeat See `RecordActivityTaskHeartbeat`. This version allows clients to record heartbeat

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_record_activity_task_heartbeat_by_id_2 '{}' --json
Shortcut
kosmo integrations:temporal temporal_record_activity_task_heartbeat_by_id_2 '{}' --json

temporal.temporal_pause_activity_execution_2

Pause activity execution Official Temporal endpoint: POST /api/v1/namespaces/{namespace}/workflows/{workflowId}/activities/{activityId}/pause PauseActivityExecution pauses the execution of an activity specified by its ID. This API can be us

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_pause_activity_execution_2 '{}' --json
Shortcut
kosmo integrations:temporal temporal_pause_activity_execution_2 '{}' --json

temporal.temporal_reset_activity_execution_2

Reset activity execution Official Temporal endpoint: POST /api/v1/namespaces/{namespace}/workflows/{workflowId}/activities/{activityId}/reset ResetActivityExecution resets the execution of an activity specified by its ID. This API can be us

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_reset_activity_execution_2 '{}' --json
Shortcut
kosmo integrations:temporal temporal_reset_activity_execution_2 '{}' --json

temporal.temporal_respond_activity_task_canceled_by_id_2

Respond activity task canceled by id Official Temporal endpoint: POST /api/v1/namespaces/{namespace}/workflows/{workflowId}/activities/{activityId}/resolve-as-canceled See `RespondActivityTaskCanceled`. This version allows clients to record

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_respond_activity_task_canceled_by_id_2 '{}' --json
Shortcut
kosmo integrations:temporal temporal_respond_activity_task_canceled_by_id_2 '{}' --json

temporal.temporal_unpause_activity_execution_2

Unpause activity execution Official Temporal endpoint: POST /api/v1/namespaces/{namespace}/workflows/{workflowId}/activities/{activityId}/unpause UnpauseActivityExecution unpauses the execution of an activity specified by its ID. This API c

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_unpause_activity_execution_2 '{}' --json
Shortcut
kosmo integrations:temporal temporal_unpause_activity_execution_2 '{}' --json

temporal.temporal_update_activity_execution_options_2

Update activity execution options Official Temporal endpoint: POST /api/v1/namespaces/{namespace}/workflows/{workflowId}/activities/{activityId}/update-options UpdateActivityExecutionOptions is called by the client to update the options of

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_update_activity_execution_options_2 '{}' --json
Shortcut
kosmo integrations:temporal temporal_update_activity_execution_options_2 '{}' --json

temporal.temporal_pause_workflow_execution

Pause workflow execution Official Temporal endpoint: POST /api/v1/namespaces/{namespace}/workflows/{workflowId}/pause Note: This is an experimental API and the behavior may change in a future release. PauseWorkflowExecution pauses the workf

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_pause_workflow_execution '{}' --json
Shortcut
kosmo integrations:temporal temporal_pause_workflow_execution '{}' --json

temporal.temporal_signal_with_start_workflow_execution

Signal with start workflow execution Official Temporal endpoint: POST /api/v1/namespaces/{namespace}/workflows/{workflowId}/signal-with-start/{signalName} SignalWithStartWorkflowExecution is used to ensure a signal is sent to a workflow, ev

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_signal_with_start_workflow_execution '{}' --json
Shortcut
kosmo integrations:temporal temporal_signal_with_start_workflow_execution '{}' --json

temporal.temporal_unpause_workflow_execution

Unpause workflow execution Official Temporal endpoint: POST /api/v1/namespaces/{namespace}/workflows/{workflowId}/unpause Note: This is an experimental API and the behavior may change in a future release. UnpauseWorkflowExecution unpauses a

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_unpause_workflow_execution '{}' --json
Shortcut
kosmo integrations:temporal temporal_unpause_workflow_execution '{}' --json

temporal.temporal_request_cancel_workflow_execution

Request cancel workflow execution Official Temporal endpoint: POST /api/v1/namespaces/{namespace}/workflows/{workflow_execution.workflow_id}/cancel RequestCancelWorkflowExecution is called by workers when they want to request cancellation o

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_request_cancel_workflow_execution '{}' --json
Shortcut
kosmo integrations:temporal temporal_request_cancel_workflow_execution '{}' --json

temporal.temporal_reset_workflow_execution

Reset workflow execution Official Temporal endpoint: POST /api/v1/namespaces/{namespace}/workflows/{workflow_execution.workflow_id}/reset ResetWorkflowExecution will reset an existing workflow execution to a specified `WORKFLOW_TASK_COMPLET

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_reset_workflow_execution '{}' --json
Shortcut
kosmo integrations:temporal temporal_reset_workflow_execution '{}' --json

temporal.temporal_signal_workflow_execution

Signal workflow execution Official Temporal endpoint: POST /api/v1/namespaces/{namespace}/workflows/{workflow_execution.workflow_id}/signal/{signalName} SignalWorkflowExecution is used to send a signal to a running workflow execution. This

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_signal_workflow_execution '{}' --json
Shortcut
kosmo integrations:temporal temporal_signal_workflow_execution '{}' --json

temporal.temporal_terminate_workflow_execution

Terminate workflow execution Official Temporal endpoint: POST /api/v1/namespaces/{namespace}/workflows/{workflow_execution.workflow_id}/terminate TerminateWorkflowExecution terminates an existing workflow execution by recording a `WORKFLOW_

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_terminate_workflow_execution '{}' --json
Shortcut
kosmo integrations:temporal temporal_terminate_workflow_execution '{}' --json

temporal.temporal_update_workflow_execution_options

Update workflow execution options Official Temporal endpoint: POST /api/v1/namespaces/{namespace}/workflows/{workflow_execution.workflow_id}/update-options UpdateWorkflowExecutionOptions partially updates the WorkflowExecutionOptions of an

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_update_workflow_execution_options '{}' --json
Shortcut
kosmo integrations:temporal temporal_update_workflow_execution_options '{}' --json

temporal.temporal_update_workflow_execution

Update workflow execution Official Temporal endpoint: POST /api/v1/namespaces/{namespace}/workflows/{workflow_execution.workflow_id}/update/{request.input.name} Invokes the specified Update function on user Workflow code.

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_update_workflow_execution '{}' --json
Shortcut
kosmo integrations:temporal temporal_update_workflow_execution '{}' --json

temporal.temporal_list_nexus_endpoints

List nexus endpoints Official Temporal endpoint: GET /api/v1/nexus/endpoints List all Nexus endpoints for the cluster, sorted by ID in ascending order. Set page_token in the request to the next_page_token field of the previous response to g

Read read
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_list_nexus_endpoints '{}' --json
Shortcut
kosmo integrations:temporal temporal_list_nexus_endpoints '{}' --json

temporal.temporal_create_nexus_endpoint

Create nexus endpoint Official Temporal endpoint: POST /api/v1/nexus/endpoints Create a Nexus endpoint. This will fail if an endpoint with the same name is already registered with a status of ALREADY_EXISTS. Returns the created endpoint wit

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_create_nexus_endpoint '{}' --json
Shortcut
kosmo integrations:temporal temporal_create_nexus_endpoint '{}' --json

temporal.temporal_get_nexus_endpoint

Get nexus endpoint Official Temporal endpoint: GET /api/v1/nexus/endpoints/{id} Get a registered Nexus endpoint by ID. The returned version can be used for optimistic updates.

Read read
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_get_nexus_endpoint '{}' --json
Shortcut
kosmo integrations:temporal temporal_get_nexus_endpoint '{}' --json

temporal.temporal_delete_nexus_endpoint

Delete nexus endpoint Official Temporal endpoint: DELETE /api/v1/nexus/endpoints/{id} Delete an incoming Nexus service by ID.

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_delete_nexus_endpoint '{}' --json
Shortcut
kosmo integrations:temporal temporal_delete_nexus_endpoint '{}' --json

temporal.temporal_update_nexus_endpoint

Update nexus endpoint Official Temporal endpoint: POST /api/v1/nexus/endpoints/{id}/update Optimistically update a Nexus endpoint based on provided version as obtained via the `GetNexusEndpoint` or `ListNexusEndpointResponse` APIs. This wil

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_update_nexus_endpoint '{}' --json
Shortcut
kosmo integrations:temporal temporal_update_nexus_endpoint '{}' --json

temporal.temporal_get_system_info

Get system info Official Temporal endpoint: GET /api/v1/system-info GetSystemInfo returns information about the system.

Read read
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_get_system_info '{}' --json
Shortcut
kosmo integrations:temporal temporal_get_system_info '{}' --json

temporal.temporal_get_cluster_info_2

Get cluster info Official Temporal endpoint: GET /cluster GetClusterInfo returns information about temporal cluster

Read read
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_get_cluster_info_2 '{}' --json
Shortcut
kosmo integrations:temporal temporal_get_cluster_info_2 '{}' --json

temporal.temporal_list_namespaces_2

List namespaces Official Temporal endpoint: GET /cluster/namespaces ListNamespaces returns the information and configuration for all namespaces.

Read read
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_list_namespaces_2 '{}' --json
Shortcut
kosmo integrations:temporal temporal_list_namespaces_2 '{}' --json

temporal.temporal_register_namespace_2

Register namespace Official Temporal endpoint: POST /cluster/namespaces RegisterNamespace creates a new namespace which can be used as a container for all resources. A Namespace is a top level entity within Temporal, and is used as a contai

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_register_namespace_2 '{}' --json
Shortcut
kosmo integrations:temporal temporal_register_namespace_2 '{}' --json

temporal.temporal_describe_namespace_2

Describe namespace Official Temporal endpoint: GET /cluster/namespaces/{namespace} DescribeNamespace returns the information and configuration for a registered namespace.

Read read
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_describe_namespace_2 '{}' --json
Shortcut
kosmo integrations:temporal temporal_describe_namespace_2 '{}' --json

temporal.temporal_list_search_attributes_2

List search attributes Official Temporal endpoint: GET /cluster/namespaces/{namespace}/search-attributes ListSearchAttributes returns comprehensive information about search attributes.

Read read
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_list_search_attributes_2 '{}' --json
Shortcut
kosmo integrations:temporal temporal_list_search_attributes_2 '{}' --json

temporal.temporal_update_namespace_2

Update namespace Official Temporal endpoint: POST /cluster/namespaces/{namespace}/update UpdateNamespace is used to update the information and configuration of a registered namespace.

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_update_namespace_2 '{}' --json
Shortcut
kosmo integrations:temporal temporal_update_namespace_2 '{}' --json

temporal.temporal_list_nexus_endpoints_2

List nexus endpoints Official Temporal endpoint: GET /cluster/nexus/endpoints List all Nexus endpoints for the cluster, sorted by ID in ascending order. Set page_token in the request to the next_page_token field of the previous response to

Read read
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_list_nexus_endpoints_2 '{}' --json
Shortcut
kosmo integrations:temporal temporal_list_nexus_endpoints_2 '{}' --json

temporal.temporal_create_nexus_endpoint_2

Create nexus endpoint Official Temporal endpoint: POST /cluster/nexus/endpoints Create a Nexus endpoint. This will fail if an endpoint with the same name is already registered with a status of ALREADY_EXISTS. Returns the created endpoint wi

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_create_nexus_endpoint_2 '{}' --json
Shortcut
kosmo integrations:temporal temporal_create_nexus_endpoint_2 '{}' --json

temporal.temporal_get_nexus_endpoint_2

Get nexus endpoint Official Temporal endpoint: GET /cluster/nexus/endpoints/{id} Get a registered Nexus endpoint by ID. The returned version can be used for optimistic updates.

Read read
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_get_nexus_endpoint_2 '{}' --json
Shortcut
kosmo integrations:temporal temporal_get_nexus_endpoint_2 '{}' --json

temporal.temporal_delete_nexus_endpoint_2

Delete nexus endpoint Official Temporal endpoint: DELETE /cluster/nexus/endpoints/{id} Delete an incoming Nexus service by ID.

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_delete_nexus_endpoint_2 '{}' --json
Shortcut
kosmo integrations:temporal temporal_delete_nexus_endpoint_2 '{}' --json

temporal.temporal_update_nexus_endpoint_2

Update nexus endpoint Official Temporal endpoint: POST /cluster/nexus/endpoints/{id}/update Optimistically update a Nexus endpoint based on provided version as obtained via the `GetNexusEndpoint` or `ListNexusEndpointResponse` APIs. This wi

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_update_nexus_endpoint_2 '{}' --json
Shortcut
kosmo integrations:temporal temporal_update_nexus_endpoint_2 '{}' --json

temporal.temporal_list_activity_executions_2

List activity executions Official Temporal endpoint: GET /namespaces/{namespace}/activities ListActivityExecutions is a visibility API to list activity executions in a specific namespace.

Read read
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_list_activity_executions_2 '{}' --json
Shortcut
kosmo integrations:temporal temporal_list_activity_executions_2 '{}' --json

temporal.temporal_pause_activity_2

Pause activity Official Temporal endpoint: POST /namespaces/{namespace}/activities-deprecated/pause PauseActivity pauses the execution of an activity specified by its ID or type. If there are multiple pending activities of the provided type

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_pause_activity_2 '{}' --json
Shortcut
kosmo integrations:temporal temporal_pause_activity_2 '{}' --json

temporal.temporal_reset_activity_2

Reset activity Official Temporal endpoint: POST /namespaces/{namespace}/activities-deprecated/reset ResetActivity resets the execution of an activity specified by its ID or type. If there are multiple pending activities of the provided type

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_reset_activity_2 '{}' --json
Shortcut
kosmo integrations:temporal temporal_reset_activity_2 '{}' --json

temporal.temporal_unpause_activity_2

Unpause activity Official Temporal endpoint: POST /namespaces/{namespace}/activities-deprecated/unpause UnpauseActivity unpauses the execution of an activity specified by its ID or type. If there are multiple pending activities of the provi

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_unpause_activity_2 '{}' --json
Shortcut
kosmo integrations:temporal temporal_unpause_activity_2 '{}' --json

temporal.temporal_update_activity_options_2

Update activity options Official Temporal endpoint: POST /namespaces/{namespace}/activities-deprecated/update-options UpdateActivityOptions is called by the client to update the options of an activity by its ID or type. If there are multipl

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_update_activity_options_2 '{}' --json
Shortcut
kosmo integrations:temporal temporal_update_activity_options_2 '{}' --json

temporal.temporal_describe_activity_execution_2

Describe activity execution Official Temporal endpoint: GET /namespaces/{namespace}/activities/{activityId} DescribeActivityExecution returns information about an activity execution. It can be used to: - Get current activity info without wa

Read read
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_describe_activity_execution_2 '{}' --json
Shortcut
kosmo integrations:temporal temporal_describe_activity_execution_2 '{}' --json

temporal.temporal_start_activity_execution_2

Start activity execution Official Temporal endpoint: POST /namespaces/{namespace}/activities/{activityId} StartActivityExecution starts a new activity execution. Returns an `ActivityExecutionAlreadyStarted` error if an instance already exis

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_start_activity_execution_2 '{}' --json
Shortcut
kosmo integrations:temporal temporal_start_activity_execution_2 '{}' --json

temporal.temporal_request_cancel_activity_execution_2

Request cancel activity execution Official Temporal endpoint: POST /namespaces/{namespace}/activities/{activityId}/cancel RequestCancelActivityExecution requests cancellation of an activity execution. Cancellation is cooperative: this call

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_request_cancel_activity_execution_2 '{}' --json
Shortcut
kosmo integrations:temporal temporal_request_cancel_activity_execution_2 '{}' --json

temporal.temporal_respond_activity_task_completed_by_id_3

Respond activity task completed by id Official Temporal endpoint: POST /namespaces/{namespace}/activities/{activityId}/complete See `RespondActivityTaskCompleted`. This version allows clients to record completions by namespace/workflow id/a

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_respond_activity_task_completed_by_id_3 '{}' --json
Shortcut
kosmo integrations:temporal temporal_respond_activity_task_completed_by_id_3 '{}' --json

temporal.temporal_respond_activity_task_failed_by_id_3

Respond activity task failed by id Official Temporal endpoint: POST /namespaces/{namespace}/activities/{activityId}/fail See `RecordActivityTaskFailed`. This version allows clients to record failures by namespace/workflow id/activity id ins

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_respond_activity_task_failed_by_id_3 '{}' --json
Shortcut
kosmo integrations:temporal temporal_respond_activity_task_failed_by_id_3 '{}' --json

temporal.temporal_record_activity_task_heartbeat_by_id_3

Record activity task heartbeat by id Official Temporal endpoint: POST /namespaces/{namespace}/activities/{activityId}/heartbeat See `RecordActivityTaskHeartbeat`. This version allows clients to record heartbeats by namespace/workflow id/act

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_record_activity_task_heartbeat_by_id_3 '{}' --json
Shortcut
kosmo integrations:temporal temporal_record_activity_task_heartbeat_by_id_3 '{}' --json

temporal.temporal_poll_activity_execution_2

Poll activity execution Official Temporal endpoint: GET /namespaces/{namespace}/activities/{activityId}/outcome PollActivityExecution long-polls for an activity execution to complete and returns the outcome (result or failure).

Read read
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_poll_activity_execution_2 '{}' --json
Shortcut
kosmo integrations:temporal temporal_poll_activity_execution_2 '{}' --json

temporal.temporal_pause_activity_execution_3

Pause activity execution Official Temporal endpoint: POST /namespaces/{namespace}/activities/{activityId}/pause PauseActivityExecution pauses the execution of an activity specified by its ID. This API can be used to target a workflow activi

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_pause_activity_execution_3 '{}' --json
Shortcut
kosmo integrations:temporal temporal_pause_activity_execution_3 '{}' --json

temporal.temporal_reset_activity_execution_3

Reset activity execution Official Temporal endpoint: POST /namespaces/{namespace}/activities/{activityId}/reset ResetActivityExecution resets the execution of an activity specified by its ID. This API can be used to target a workflow activi

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_reset_activity_execution_3 '{}' --json
Shortcut
kosmo integrations:temporal temporal_reset_activity_execution_3 '{}' --json

temporal.temporal_respond_activity_task_canceled_by_id_3

Respond activity task canceled by id Official Temporal endpoint: POST /namespaces/{namespace}/activities/{activityId}/resolve-as-canceled See `RespondActivityTaskCanceled`. This version allows clients to record failures by namespace/workflo

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_respond_activity_task_canceled_by_id_3 '{}' --json
Shortcut
kosmo integrations:temporal temporal_respond_activity_task_canceled_by_id_3 '{}' --json

temporal.temporal_terminate_activity_execution_2

Terminate activity execution Official Temporal endpoint: POST /namespaces/{namespace}/activities/{activityId}/terminate TerminateActivityExecution terminates an existing activity execution immediately. Termination does not reach the worker

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_terminate_activity_execution_2 '{}' --json
Shortcut
kosmo integrations:temporal temporal_terminate_activity_execution_2 '{}' --json

temporal.temporal_unpause_activity_execution_3

Unpause activity execution Official Temporal endpoint: POST /namespaces/{namespace}/activities/{activityId}/unpause UnpauseActivityExecution unpauses the execution of an activity specified by its ID. This API can be used to target a workflo

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_unpause_activity_execution_3 '{}' --json
Shortcut
kosmo integrations:temporal temporal_unpause_activity_execution_3 '{}' --json

temporal.temporal_update_activity_execution_options_3

Update activity execution options Official Temporal endpoint: POST /namespaces/{namespace}/activities/{activityId}/update-options UpdateActivityExecutionOptions is called by the client to update the options of an activity by its ID. This AP

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_update_activity_execution_options_3 '{}' --json
Shortcut
kosmo integrations:temporal temporal_update_activity_execution_options_3 '{}' --json

temporal.temporal_respond_activity_task_completed_2

Respond activity task completed Official Temporal endpoint: POST /namespaces/{namespace}/activity-complete RespondActivityTaskCompleted is called by workers when they successfully complete an activity task. For workflow activities, this res

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_respond_activity_task_completed_2 '{}' --json
Shortcut
kosmo integrations:temporal temporal_respond_activity_task_completed_2 '{}' --json

temporal.temporal_count_activity_executions_2

Count activity executions Official Temporal endpoint: GET /namespaces/{namespace}/activity-count CountActivityExecutions is a visibility API to count activity executions in a specific namespace.

Read read
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_count_activity_executions_2 '{}' --json
Shortcut
kosmo integrations:temporal temporal_count_activity_executions_2 '{}' --json

temporal.temporal_respond_activity_task_failed_2

Respond activity task failed Official Temporal endpoint: POST /namespaces/{namespace}/activity-fail RespondActivityTaskFailed is called by workers when processing an activity task fails. This results in a new `ACTIVITY_TASK_FAILED` event be

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_respond_activity_task_failed_2 '{}' --json
Shortcut
kosmo integrations:temporal temporal_respond_activity_task_failed_2 '{}' --json

temporal.temporal_record_activity_task_heartbeat_2

Record activity task heartbeat Official Temporal endpoint: POST /namespaces/{namespace}/activity-heartbeat RecordActivityTaskHeartbeat is optionally called by workers while they execute activities. If a worker fails to heartbeat within the

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_record_activity_task_heartbeat_2 '{}' --json
Shortcut
kosmo integrations:temporal temporal_record_activity_task_heartbeat_2 '{}' --json

temporal.temporal_respond_activity_task_canceled_2

Respond activity task canceled Official Temporal endpoint: POST /namespaces/{namespace}/activity-resolve-as-canceled RespondActivityTaskFailed is called by workers when processing an activity task fails. For workflow activities, this result

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_respond_activity_task_canceled_2 '{}' --json
Shortcut
kosmo integrations:temporal temporal_respond_activity_task_canceled_2 '{}' --json

temporal.temporal_list_archived_workflow_executions_2

List archived workflow executions Official Temporal endpoint: GET /namespaces/{namespace}/archived-workflows ListArchivedWorkflowExecutions is a visibility API to list archived workflow executions in a specific namespace.

Read read
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_list_archived_workflow_executions_2 '{}' --json
Shortcut
kosmo integrations:temporal temporal_list_archived_workflow_executions_2 '{}' --json

temporal.temporal_list_batch_operations_2

List batch operations Official Temporal endpoint: GET /namespaces/{namespace}/batch-operations ListBatchOperations returns a list of batch operations

Read read
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_list_batch_operations_2 '{}' --json
Shortcut
kosmo integrations:temporal temporal_list_batch_operations_2 '{}' --json

temporal.temporal_describe_batch_operation_2

Describe batch operation Official Temporal endpoint: GET /namespaces/{namespace}/batch-operations/{jobId} DescribeBatchOperation returns the information about a batch operation

Read read
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_describe_batch_operation_2 '{}' --json
Shortcut
kosmo integrations:temporal temporal_describe_batch_operation_2 '{}' --json

temporal.temporal_start_batch_operation_2

Start batch operation Official Temporal endpoint: POST /namespaces/{namespace}/batch-operations/{jobId} StartBatchOperation starts a new batch operation

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_start_batch_operation_2 '{}' --json
Shortcut
kosmo integrations:temporal temporal_start_batch_operation_2 '{}' --json

temporal.temporal_stop_batch_operation_2

Stop batch operation Official Temporal endpoint: POST /namespaces/{namespace}/batch-operations/{jobId}/stop StopBatchOperation stops a batch operation

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_stop_batch_operation_2 '{}' --json
Shortcut
kosmo integrations:temporal temporal_stop_batch_operation_2 '{}' --json

temporal.temporal_set_current_deployment_2

Set current deployment Official Temporal endpoint: POST /namespaces/{namespace}/current-deployment/{deployment.series_name} Sets a deployment as the current deployment for its deployment series. Can optionally update the metadata of the dep

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_set_current_deployment_2 '{}' --json
Shortcut
kosmo integrations:temporal temporal_set_current_deployment_2 '{}' --json

temporal.temporal_get_current_deployment_2

Get current deployment Official Temporal endpoint: GET /namespaces/{namespace}/current-deployment/{seriesName} Returns the current deployment (and its info) for a given deployment series. Experimental. This API might significantly change or

Read read
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_get_current_deployment_2 '{}' --json
Shortcut
kosmo integrations:temporal temporal_get_current_deployment_2 '{}' --json

temporal.temporal_list_deployments_2

List deployments Official Temporal endpoint: GET /namespaces/{namespace}/deployments Lists worker deployments in the namespace. Optionally can filter based on deployment series name. Experimental. This API might significantly change or be r

Read read
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_list_deployments_2 '{}' --json
Shortcut
kosmo integrations:temporal temporal_list_deployments_2 '{}' --json

temporal.temporal_describe_deployment_2

Describe deployment Official Temporal endpoint: GET /namespaces/{namespace}/deployments/{deployment.series_name}/{deployment.build_id} Describes a worker deployment. Experimental. This API might significantly change or be removed in a futur

Read read
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_describe_deployment_2 '{}' --json
Shortcut
kosmo integrations:temporal temporal_describe_deployment_2 '{}' --json

temporal.temporal_get_deployment_reachability_2

Get deployment reachability Official Temporal endpoint: GET /namespaces/{namespace}/deployments/{deployment.series_name}/{deployment.build_id}/reachability Returns the reachability level of a worker deployment to help users decide when it i

Read read
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_get_deployment_reachability_2 '{}' --json
Shortcut
kosmo integrations:temporal temporal_get_deployment_reachability_2 '{}' --json

temporal.temporal_count_nexus_operation_executions_2

Count nexus operation executions Official Temporal endpoint: GET /namespaces/{namespace}/nexus-operation-count CountNexusOperationExecutions is a visibility API to count Nexus operations in a specific namespace.

Read read
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_count_nexus_operation_executions_2 '{}' --json
Shortcut
kosmo integrations:temporal temporal_count_nexus_operation_executions_2 '{}' --json

temporal.temporal_list_nexus_operation_executions_2

List nexus operation executions Official Temporal endpoint: GET /namespaces/{namespace}/nexus-operations ListNexusOperationExecutions is a visibility API to list Nexus operations in a specific namespace.

Read read
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_list_nexus_operation_executions_2 '{}' --json
Shortcut
kosmo integrations:temporal temporal_list_nexus_operation_executions_2 '{}' --json

temporal.temporal_describe_nexus_operation_execution_2

Describe nexus operation execution Official Temporal endpoint: GET /namespaces/{namespace}/nexus-operations/{operationId} DescribeNexusOperationExecution returns information about a Nexus operation. Supported use cases include: - Get curren

Read read
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_describe_nexus_operation_execution_2 '{}' --json
Shortcut
kosmo integrations:temporal temporal_describe_nexus_operation_execution_2 '{}' --json

temporal.temporal_start_nexus_operation_execution_2

Start nexus operation execution Official Temporal endpoint: POST /namespaces/{namespace}/nexus-operations/{operationId} StartNexusOperationExecution starts a new Nexus operation. Returns a `NexusOperationExecutionAlreadyStarted` error if an

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_start_nexus_operation_execution_2 '{}' --json
Shortcut
kosmo integrations:temporal temporal_start_nexus_operation_execution_2 '{}' --json

temporal.temporal_request_cancel_nexus_operation_execution_2

Request cancel nexus operation execution Official Temporal endpoint: POST /namespaces/{namespace}/nexus-operations/{operationId}/cancel RequestCancelNexusOperationExecution requests cancellation of a Nexus operation. Requesting to cancel an

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_request_cancel_nexus_operation_execution_2 '{}' --json
Shortcut
kosmo integrations:temporal temporal_request_cancel_nexus_operation_execution_2 '{}' --json

temporal.temporal_poll_nexus_operation_execution_2

Poll nexus operation execution Official Temporal endpoint: GET /namespaces/{namespace}/nexus-operations/{operationId}/poll PollNexusOperationExecution long-polls for a Nexus operation for a given wait stage to complete and returns the outco

Read read
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_poll_nexus_operation_execution_2 '{}' --json
Shortcut
kosmo integrations:temporal temporal_poll_nexus_operation_execution_2 '{}' --json

temporal.temporal_terminate_nexus_operation_execution_2

Terminate nexus operation execution Official Temporal endpoint: POST /namespaces/{namespace}/nexus-operations/{operationId}/terminate TerminateNexusOperationExecution terminates an existing Nexus operation immediately. Termination happens i

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_terminate_nexus_operation_execution_2 '{}' --json
Shortcut
kosmo integrations:temporal temporal_terminate_nexus_operation_execution_2 '{}' --json

temporal.temporal_count_schedules_2

Count schedules Official Temporal endpoint: GET /namespaces/{namespace}/schedule-count CountSchedules is a visibility API to count schedules in a specific namespace.

Read read
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_count_schedules_2 '{}' --json
Shortcut
kosmo integrations:temporal temporal_count_schedules_2 '{}' --json

temporal.temporal_list_schedules_2

List schedules Official Temporal endpoint: GET /namespaces/{namespace}/schedules List all schedules in a namespace.

Read read
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_list_schedules_2 '{}' --json
Shortcut
kosmo integrations:temporal temporal_list_schedules_2 '{}' --json

temporal.temporal_describe_schedule_2

Describe schedule Official Temporal endpoint: GET /namespaces/{namespace}/schedules/{scheduleId} Returns the schedule description and current state of an existing schedule.

Read read
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_describe_schedule_2 '{}' --json
Shortcut
kosmo integrations:temporal temporal_describe_schedule_2 '{}' --json

temporal.temporal_create_schedule_2

Create schedule Official Temporal endpoint: POST /namespaces/{namespace}/schedules/{scheduleId} Creates a new schedule.

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_create_schedule_2 '{}' --json
Shortcut
kosmo integrations:temporal temporal_create_schedule_2 '{}' --json

temporal.temporal_delete_schedule_2

Delete schedule Official Temporal endpoint: DELETE /namespaces/{namespace}/schedules/{scheduleId} Deletes a schedule, removing it from the system.

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_delete_schedule_2 '{}' --json
Shortcut
kosmo integrations:temporal temporal_delete_schedule_2 '{}' --json

temporal.temporal_list_schedule_matching_times_2

List schedule matching times Official Temporal endpoint: GET /namespaces/{namespace}/schedules/{scheduleId}/matching-times Lists matching times within a range.

Read read
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_list_schedule_matching_times_2 '{}' --json
Shortcut
kosmo integrations:temporal temporal_list_schedule_matching_times_2 '{}' --json

temporal.temporal_patch_schedule_2

Patch schedule Official Temporal endpoint: POST /namespaces/{namespace}/schedules/{scheduleId}/patch Makes a specific change to a schedule or triggers an immediate action.

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_patch_schedule_2 '{}' --json
Shortcut
kosmo integrations:temporal temporal_patch_schedule_2 '{}' --json

temporal.temporal_update_schedule_2

Update schedule Official Temporal endpoint: POST /namespaces/{namespace}/schedules/{scheduleId}/update Changes the configuration or state of an existing schedule.

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_update_schedule_2 '{}' --json
Shortcut
kosmo integrations:temporal temporal_update_schedule_2 '{}' --json

temporal.temporal_update_task_queue_config_2

Update task queue config Official Temporal endpoint: POST /namespaces/{namespace}/task-queues/{taskQueue}/update-config Updates task queue configuration. For the overall queue rate limit: the rate limit set by this api overrides the worker-

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_update_task_queue_config_2 '{}' --json
Shortcut
kosmo integrations:temporal temporal_update_task_queue_config_2 '{}' --json

temporal.temporal_get_worker_build_id_compatibility_2

Get worker build id compatibility Official Temporal endpoint: GET /namespaces/{namespace}/task-queues/{taskQueue}/worker-build-id-compatibility Deprecated. Use `GetWorkerVersioningRules`. Fetches the worker build id versioning sets for a ta

Read read
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_get_worker_build_id_compatibility_2 '{}' --json
Shortcut
kosmo integrations:temporal temporal_get_worker_build_id_compatibility_2 '{}' --json

temporal.temporal_get_worker_versioning_rules_2

Get worker versioning rules Official Temporal endpoint: GET /namespaces/{namespace}/task-queues/{taskQueue}/worker-versioning-rules Fetches the Build ID assignment and redirect rules for a Task Queue. WARNING: Worker Versioning is not yet s

Read read
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_get_worker_versioning_rules_2 '{}' --json
Shortcut
kosmo integrations:temporal temporal_get_worker_versioning_rules_2 '{}' --json

temporal.temporal_describe_task_queue_2

Describe task queue Official Temporal endpoint: GET /namespaces/{namespace}/task-queues/{task_queue.name} DescribeTaskQueue returns the following information about the target task queue, broken down by Build ID: - List of pollers - Workflow

Read read
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_describe_task_queue_2 '{}' --json
Shortcut
kosmo integrations:temporal temporal_describe_task_queue_2 '{}' --json

temporal.temporal_create_worker_deployment_version_2

Create worker deployment version Official Temporal endpoint: POST /namespaces/{namespace}/worker-deployment-versions/{deployment_version.deployment_name} Creates a new Worker Deployment Version. Experimental. This API might significantly ch

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_create_worker_deployment_version_2 '{}' --json
Shortcut
kosmo integrations:temporal temporal_create_worker_deployment_version_2 '{}' --json

temporal.temporal_describe_worker_deployment_version_2

Describe worker deployment version Official Temporal endpoint: GET /namespaces/{namespace}/worker-deployment-versions/{deployment_version.deployment_name}/{deployment_version.build_id} Describes a worker deployment version. Experimental. Th

Read read
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_describe_worker_deployment_version_2 '{}' --json
Shortcut
kosmo integrations:temporal temporal_describe_worker_deployment_version_2 '{}' --json

temporal.temporal_delete_worker_deployment_version_2

Delete worker deployment version Official Temporal endpoint: DELETE /namespaces/{namespace}/worker-deployment-versions/{deployment_version.deployment_name}/{deployment_version.build_id} Used for manual deletion of Versions. User can delete

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_delete_worker_deployment_version_2 '{}' --json
Shortcut
kosmo integrations:temporal temporal_delete_worker_deployment_version_2 '{}' --json

temporal.temporal_update_worker_deployment_version_compute_config_2

Update worker deployment version compute config Official Temporal endpoint: POST /namespaces/{namespace}/worker-deployment-versions/{deployment_version.deployment_name}/{deployment_version.build_id}/update-compute-config Updates the compute

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_update_worker_deployment_version_compute_config_2 '{}' --json
Shortcut
kosmo integrations:temporal temporal_update_worker_deployment_version_compute_config_2 '{}' --json

temporal.temporal_update_worker_deployment_version_metadata_2

Update worker deployment version metadata Official Temporal endpoint: POST /namespaces/{namespace}/worker-deployment-versions/{deployment_version.deployment_name}/{deployment_version.build_id}/update-metadata Updates the user-given metadata

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_update_worker_deployment_version_metadata_2 '{}' --json
Shortcut
kosmo integrations:temporal temporal_update_worker_deployment_version_metadata_2 '{}' --json

temporal.temporal_validate_worker_deployment_version_compute_config_2

Validate worker deployment version compute config Official Temporal endpoint: POST /namespaces/{namespace}/worker-deployment-versions/{deployment_version.deployment_name}/{deployment_version.build_id}/validate-compute-config Validates the c

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_validate_worker_deployment_version_compute_config_2 '{}' --json
Shortcut
kosmo integrations:temporal temporal_validate_worker_deployment_version_compute_config_2 '{}' --json

temporal.temporal_list_worker_deployments_2

List worker deployments Official Temporal endpoint: GET /namespaces/{namespace}/worker-deployments Lists all Worker Deployments that are tracked in the Namespace. Experimental. This API might significantly change or be removed in a future r

Read read
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_list_worker_deployments_2 '{}' --json
Shortcut
kosmo integrations:temporal temporal_list_worker_deployments_2 '{}' --json

temporal.temporal_describe_worker_deployment_2

Describe worker deployment Official Temporal endpoint: GET /namespaces/{namespace}/worker-deployments/{deploymentName} Describes a Worker Deployment. Experimental. This API might significantly change or be removed in a future release.

Read read
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_describe_worker_deployment_2 '{}' --json
Shortcut
kosmo integrations:temporal temporal_describe_worker_deployment_2 '{}' --json

temporal.temporal_create_worker_deployment_2

Create worker deployment Official Temporal endpoint: POST /namespaces/{namespace}/worker-deployments/{deploymentName} Creates a new Worker Deployment. Experimental. This API might significantly change or be removed in a future release.

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_create_worker_deployment_2 '{}' --json
Shortcut
kosmo integrations:temporal temporal_create_worker_deployment_2 '{}' --json

temporal.temporal_delete_worker_deployment_2

Delete worker deployment Official Temporal endpoint: DELETE /namespaces/{namespace}/worker-deployments/{deploymentName} Deletes records of (an old) Deployment. A deployment can only be deleted if it has no Version in it. Experimental. This

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_delete_worker_deployment_2 '{}' --json
Shortcut
kosmo integrations:temporal temporal_delete_worker_deployment_2 '{}' --json

temporal.temporal_set_worker_deployment_current_version_2

Set worker deployment current version Official Temporal endpoint: POST /namespaces/{namespace}/worker-deployments/{deploymentName}/set-current-version Set/unset the Current Version of a Worker Deployment. Automatically unsets the Ramping Ve

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_set_worker_deployment_current_version_2 '{}' --json
Shortcut
kosmo integrations:temporal temporal_set_worker_deployment_current_version_2 '{}' --json

temporal.temporal_set_worker_deployment_manager_2

Set worker deployment manager Official Temporal endpoint: POST /namespaces/{namespace}/worker-deployments/{deploymentName}/set-manager Set/unset the ManagerIdentity of a Worker Deployment. Experimental. This API might significantly change o

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_set_worker_deployment_manager_2 '{}' --json
Shortcut
kosmo integrations:temporal temporal_set_worker_deployment_manager_2 '{}' --json

temporal.temporal_set_worker_deployment_ramping_version_2

Set worker deployment ramping version Official Temporal endpoint: POST /namespaces/{namespace}/worker-deployments/{deploymentName}/set-ramping-version Set/unset the Ramping Version of a Worker Deployment and its ramp percentage. Can be used

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_set_worker_deployment_ramping_version_2 '{}' --json
Shortcut
kosmo integrations:temporal temporal_set_worker_deployment_ramping_version_2 '{}' --json

temporal.temporal_get_worker_task_reachability_2

Get worker task reachability Official Temporal endpoint: GET /namespaces/{namespace}/worker-task-reachability Deprecated. Use `DescribeTaskQueue`. Fetches task reachability to determine whether a worker may be retired. The request may speci

Read read
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_get_worker_task_reachability_2 '{}' --json
Shortcut
kosmo integrations:temporal temporal_get_worker_task_reachability_2 '{}' --json

temporal.temporal_list_workers_2

List workers Official Temporal endpoint: GET /namespaces/{namespace}/workers ListWorkers is a visibility API to list worker status information in a specific namespace.

Read read
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_list_workers_2 '{}' --json
Shortcut
kosmo integrations:temporal temporal_list_workers_2 '{}' --json

temporal.temporal_describe_worker_2

Describe worker Official Temporal endpoint: GET /namespaces/{namespace}/workers/describe/{workerInstanceKey} DescribeWorker returns information about the specified worker.

Read read
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_describe_worker_2 '{}' --json
Shortcut
kosmo integrations:temporal temporal_describe_worker_2 '{}' --json

temporal.temporal_fetch_worker_config_2

Fetch worker config Official Temporal endpoint: POST /namespaces/{namespace}/workers/fetch-config FetchWorkerConfig returns the worker configuration for a specific worker.

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_fetch_worker_config_2 '{}' --json
Shortcut
kosmo integrations:temporal temporal_fetch_worker_config_2 '{}' --json

temporal.temporal_record_worker_heartbeat_2

Record worker heartbeat Official Temporal endpoint: POST /namespaces/{namespace}/workers/heartbeat WorkerHeartbeat receive heartbeat request from the worker.

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_record_worker_heartbeat_2 '{}' --json
Shortcut
kosmo integrations:temporal temporal_record_worker_heartbeat_2 '{}' --json

temporal.temporal_update_worker_config_2

Update worker config Official Temporal endpoint: POST /namespaces/{namespace}/workers/update-config UpdateWorkerConfig updates the worker configuration of one or more workers. Can be used to partially update the worker configuration. Can be

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_update_worker_config_2 '{}' --json
Shortcut
kosmo integrations:temporal temporal_update_worker_config_2 '{}' --json

temporal.temporal_count_workflow_executions_2

Count workflow executions Official Temporal endpoint: GET /namespaces/{namespace}/workflow-count CountWorkflowExecutions is a visibility API to count of workflow executions in a specific namespace.

Read read
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_count_workflow_executions_2 '{}' --json
Shortcut
kosmo integrations:temporal temporal_count_workflow_executions_2 '{}' --json

temporal.temporal_list_workflow_rules_2

List workflow rules Official Temporal endpoint: GET /namespaces/{namespace}/workflow-rules Return all namespace workflow rules

Read read
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_list_workflow_rules_2 '{}' --json
Shortcut
kosmo integrations:temporal temporal_list_workflow_rules_2 '{}' --json

temporal.temporal_create_workflow_rule_2

Create workflow rule Official Temporal endpoint: POST /namespaces/{namespace}/workflow-rules Create a new workflow rule. The rules are used to control the workflow execution. The rule will be applied to all running and new workflows in the

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_create_workflow_rule_2 '{}' --json
Shortcut
kosmo integrations:temporal temporal_create_workflow_rule_2 '{}' --json

temporal.temporal_describe_workflow_rule_2

Describe workflow rule Official Temporal endpoint: GET /namespaces/{namespace}/workflow-rules/{ruleId} DescribeWorkflowRule return the rule specification for existing rule id. If there is no rule with such id - NOT FOUND error will be retur

Read read
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_describe_workflow_rule_2 '{}' --json
Shortcut
kosmo integrations:temporal temporal_describe_workflow_rule_2 '{}' --json

temporal.temporal_delete_workflow_rule_2

Delete workflow rule Official Temporal endpoint: DELETE /namespaces/{namespace}/workflow-rules/{ruleId} Delete rule by rule id

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_delete_workflow_rule_2 '{}' --json
Shortcut
kosmo integrations:temporal temporal_delete_workflow_rule_2 '{}' --json

temporal.temporal_list_workflow_executions_2

List workflow executions Official Temporal endpoint: GET /namespaces/{namespace}/workflows ListWorkflowExecutions is a visibility API to list workflow executions in a specific namespace.

Read read
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_list_workflow_executions_2 '{}' --json
Shortcut
kosmo integrations:temporal temporal_list_workflow_executions_2 '{}' --json

temporal.temporal_describe_workflow_execution_2

Describe workflow execution Official Temporal endpoint: GET /namespaces/{namespace}/workflows/{execution.workflow_id} DescribeWorkflowExecution returns information about the specified workflow execution.

Read read
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_describe_workflow_execution_2 '{}' --json
Shortcut
kosmo integrations:temporal temporal_describe_workflow_execution_2 '{}' --json

temporal.temporal_get_workflow_execution_history_2

Get workflow execution history Official Temporal endpoint: GET /namespaces/{namespace}/workflows/{execution.workflow_id}/history GetWorkflowExecutionHistory returns the history of specified workflow execution. Fails with `NotFound` if the s

Read read
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_get_workflow_execution_history_2 '{}' --json
Shortcut
kosmo integrations:temporal temporal_get_workflow_execution_history_2 '{}' --json

temporal.temporal_get_workflow_execution_history_reverse_2

Get workflow execution history reverse Official Temporal endpoint: GET /namespaces/{namespace}/workflows/{execution.workflow_id}/history-reverse GetWorkflowExecutionHistoryReverse returns the history of specified workflow execution in rever

Read read
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_get_workflow_execution_history_reverse_2 '{}' --json
Shortcut
kosmo integrations:temporal temporal_get_workflow_execution_history_reverse_2 '{}' --json

temporal.temporal_query_workflow_2

Query workflow Official Temporal endpoint: POST /namespaces/{namespace}/workflows/{execution.workflow_id}/query/{query.query_type} QueryWorkflow requests a query be executed for a specified workflow execution.

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_query_workflow_2 '{}' --json
Shortcut
kosmo integrations:temporal temporal_query_workflow_2 '{}' --json

temporal.temporal_trigger_workflow_rule_2

Trigger workflow rule Official Temporal endpoint: POST /namespaces/{namespace}/workflows/{execution.workflow_id}/trigger-rule TriggerWorkflowRule allows to: * trigger existing rule for a specific workflow execution; * trigger rule for a spe

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_trigger_workflow_rule_2 '{}' --json
Shortcut
kosmo integrations:temporal temporal_trigger_workflow_rule_2 '{}' --json

temporal.temporal_start_workflow_execution_2

Start workflow execution Official Temporal endpoint: POST /namespaces/{namespace}/workflows/{workflowId} StartWorkflowExecution starts a new workflow execution. It will create the execution with a `WORKFLOW_EXECUTION_STARTED` event in its h

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_start_workflow_execution_2 '{}' --json
Shortcut
kosmo integrations:temporal temporal_start_workflow_execution_2 '{}' --json

temporal.temporal_respond_activity_task_completed_by_id_4

Respond activity task completed by id Official Temporal endpoint: POST /namespaces/{namespace}/workflows/{workflowId}/activities/{activityId}/complete See `RespondActivityTaskCompleted`. This version allows clients to record completions by

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_respond_activity_task_completed_by_id_4 '{}' --json
Shortcut
kosmo integrations:temporal temporal_respond_activity_task_completed_by_id_4 '{}' --json

temporal.temporal_respond_activity_task_failed_by_id_4

Respond activity task failed by id Official Temporal endpoint: POST /namespaces/{namespace}/workflows/{workflowId}/activities/{activityId}/fail See `RecordActivityTaskFailed`. This version allows clients to record failures by namespace/work

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_respond_activity_task_failed_by_id_4 '{}' --json
Shortcut
kosmo integrations:temporal temporal_respond_activity_task_failed_by_id_4 '{}' --json

temporal.temporal_record_activity_task_heartbeat_by_id_4

Record activity task heartbeat by id Official Temporal endpoint: POST /namespaces/{namespace}/workflows/{workflowId}/activities/{activityId}/heartbeat See `RecordActivityTaskHeartbeat`. This version allows clients to record heartbeats by na

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_record_activity_task_heartbeat_by_id_4 '{}' --json
Shortcut
kosmo integrations:temporal temporal_record_activity_task_heartbeat_by_id_4 '{}' --json

temporal.temporal_pause_activity_execution_4

Pause activity execution Official Temporal endpoint: POST /namespaces/{namespace}/workflows/{workflowId}/activities/{activityId}/pause PauseActivityExecution pauses the execution of an activity specified by its ID. This API can be used to t

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_pause_activity_execution_4 '{}' --json
Shortcut
kosmo integrations:temporal temporal_pause_activity_execution_4 '{}' --json

temporal.temporal_reset_activity_execution_4

Reset activity execution Official Temporal endpoint: POST /namespaces/{namespace}/workflows/{workflowId}/activities/{activityId}/reset ResetActivityExecution resets the execution of an activity specified by its ID. This API can be used to t

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_reset_activity_execution_4 '{}' --json
Shortcut
kosmo integrations:temporal temporal_reset_activity_execution_4 '{}' --json

temporal.temporal_respond_activity_task_canceled_by_id_4

Respond activity task canceled by id Official Temporal endpoint: POST /namespaces/{namespace}/workflows/{workflowId}/activities/{activityId}/resolve-as-canceled See `RespondActivityTaskCanceled`. This version allows clients to record failur

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_respond_activity_task_canceled_by_id_4 '{}' --json
Shortcut
kosmo integrations:temporal temporal_respond_activity_task_canceled_by_id_4 '{}' --json

temporal.temporal_unpause_activity_execution_4

Unpause activity execution Official Temporal endpoint: POST /namespaces/{namespace}/workflows/{workflowId}/activities/{activityId}/unpause UnpauseActivityExecution unpauses the execution of an activity specified by its ID. This API can be u

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_unpause_activity_execution_4 '{}' --json
Shortcut
kosmo integrations:temporal temporal_unpause_activity_execution_4 '{}' --json

temporal.temporal_update_activity_execution_options_4

Update activity execution options Official Temporal endpoint: POST /namespaces/{namespace}/workflows/{workflowId}/activities/{activityId}/update-options UpdateActivityExecutionOptions is called by the client to update the options of an acti

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_update_activity_execution_options_4 '{}' --json
Shortcut
kosmo integrations:temporal temporal_update_activity_execution_options_4 '{}' --json

temporal.temporal_pause_workflow_execution_2

Pause workflow execution Official Temporal endpoint: POST /namespaces/{namespace}/workflows/{workflowId}/pause Note: This is an experimental API and the behavior may change in a future release. PauseWorkflowExecution pauses the workflow exe

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_pause_workflow_execution_2 '{}' --json
Shortcut
kosmo integrations:temporal temporal_pause_workflow_execution_2 '{}' --json

temporal.temporal_signal_with_start_workflow_execution_2

Signal with start workflow execution Official Temporal endpoint: POST /namespaces/{namespace}/workflows/{workflowId}/signal-with-start/{signalName} SignalWithStartWorkflowExecution is used to ensure a signal is sent to a workflow, even if i

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_signal_with_start_workflow_execution_2 '{}' --json
Shortcut
kosmo integrations:temporal temporal_signal_with_start_workflow_execution_2 '{}' --json

temporal.temporal_unpause_workflow_execution_2

Unpause workflow execution Official Temporal endpoint: POST /namespaces/{namespace}/workflows/{workflowId}/unpause Note: This is an experimental API and the behavior may change in a future release. UnpauseWorkflowExecution unpauses a previo

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_unpause_workflow_execution_2 '{}' --json
Shortcut
kosmo integrations:temporal temporal_unpause_workflow_execution_2 '{}' --json

temporal.temporal_request_cancel_workflow_execution_2

Request cancel workflow execution Official Temporal endpoint: POST /namespaces/{namespace}/workflows/{workflow_execution.workflow_id}/cancel RequestCancelWorkflowExecution is called by workers when they want to request cancellation of a wor

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_request_cancel_workflow_execution_2 '{}' --json
Shortcut
kosmo integrations:temporal temporal_request_cancel_workflow_execution_2 '{}' --json

temporal.temporal_reset_workflow_execution_2

Reset workflow execution Official Temporal endpoint: POST /namespaces/{namespace}/workflows/{workflow_execution.workflow_id}/reset ResetWorkflowExecution will reset an existing workflow execution to a specified `WORKFLOW_TASK_COMPLETED` eve

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_reset_workflow_execution_2 '{}' --json
Shortcut
kosmo integrations:temporal temporal_reset_workflow_execution_2 '{}' --json

temporal.temporal_signal_workflow_execution_2

Signal workflow execution Official Temporal endpoint: POST /namespaces/{namespace}/workflows/{workflow_execution.workflow_id}/signal/{signalName} SignalWorkflowExecution is used to send a signal to a running workflow execution. This results

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_signal_workflow_execution_2 '{}' --json
Shortcut
kosmo integrations:temporal temporal_signal_workflow_execution_2 '{}' --json

temporal.temporal_terminate_workflow_execution_2

Terminate workflow execution Official Temporal endpoint: POST /namespaces/{namespace}/workflows/{workflow_execution.workflow_id}/terminate TerminateWorkflowExecution terminates an existing workflow execution by recording a `WORKFLOW_EXECUTI

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_terminate_workflow_execution_2 '{}' --json
Shortcut
kosmo integrations:temporal temporal_terminate_workflow_execution_2 '{}' --json

temporal.temporal_update_workflow_execution_options_2

Update workflow execution options Official Temporal endpoint: POST /namespaces/{namespace}/workflows/{workflow_execution.workflow_id}/update-options UpdateWorkflowExecutionOptions partially updates the WorkflowExecutionOptions of an existin

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_update_workflow_execution_options_2 '{}' --json
Shortcut
kosmo integrations:temporal temporal_update_workflow_execution_options_2 '{}' --json

temporal.temporal_update_workflow_execution_2

Update workflow execution Official Temporal endpoint: POST /namespaces/{namespace}/workflows/{workflow_execution.workflow_id}/update/{request.input.name} Invokes the specified Update function on user Workflow code.

Write write
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_update_workflow_execution_2 '{}' --json
Shortcut
kosmo integrations:temporal temporal_update_workflow_execution_2 '{}' --json

temporal.temporal_get_system_info_2

Get system info Official Temporal endpoint: GET /system-info GetSystemInfo returns information about the system.

Read read
Parameters
none
Generic call
kosmo integrations:call temporal.temporal_get_system_info_2 '{}' --json
Shortcut
kosmo integrations:temporal temporal_get_system_info_2 '{}' --json

Function Schemas

Use these parameter tables when building CLI payloads without calling integrations:schema first.

temporal.temporal_get_cluster_info 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_get_cluster_info --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_list_namespaces 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_list_namespaces --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_register_namespace 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_register_namespace --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_describe_namespace 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_describe_namespace --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_list_activity_executions 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_list_activity_executions --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_pause_activity 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_pause_activity --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_reset_activity 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_reset_activity --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_unpause_activity 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_unpause_activity --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_update_activity_options 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_update_activity_options --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_describe_activity_execution 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_describe_activity_execution --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_start_activity_execution 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_start_activity_execution --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_request_cancel_activity_execution 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_request_cancel_activity_execution --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_respond_activity_task_completed_by_id 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_respond_activity_task_completed_by_id --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_respond_activity_task_failed_by_id 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_respond_activity_task_failed_by_id --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_record_activity_task_heartbeat_by_id 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_record_activity_task_heartbeat_by_id --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_poll_activity_execution 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_poll_activity_execution --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_pause_activity_execution 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_pause_activity_execution --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_reset_activity_execution 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_reset_activity_execution --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_respond_activity_task_canceled_by_id 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_respond_activity_task_canceled_by_id --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_terminate_activity_execution 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_terminate_activity_execution --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_unpause_activity_execution 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_unpause_activity_execution --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_update_activity_execution_options 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_update_activity_execution_options --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_respond_activity_task_completed 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_respond_activity_task_completed --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_count_activity_executions 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_count_activity_executions --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_respond_activity_task_failed 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_respond_activity_task_failed --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_record_activity_task_heartbeat 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_record_activity_task_heartbeat --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_respond_activity_task_canceled 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_respond_activity_task_canceled --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_list_archived_workflow_executions 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_list_archived_workflow_executions --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_list_batch_operations 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_list_batch_operations --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_describe_batch_operation 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_describe_batch_operation --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_start_batch_operation 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_start_batch_operation --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_stop_batch_operation 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_stop_batch_operation --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_set_current_deployment 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_set_current_deployment --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_get_current_deployment 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_get_current_deployment --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_list_deployments 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_list_deployments --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_describe_deployment 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_describe_deployment --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_get_deployment_reachability 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_get_deployment_reachability --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_count_nexus_operation_executions 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_count_nexus_operation_executions --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_list_nexus_operation_executions 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_list_nexus_operation_executions --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_describe_nexus_operation_execution 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_describe_nexus_operation_execution --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_start_nexus_operation_execution 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_start_nexus_operation_execution --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_request_cancel_nexus_operation_execution 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_request_cancel_nexus_operation_execution --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_poll_nexus_operation_execution 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_poll_nexus_operation_execution --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_terminate_nexus_operation_execution 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_terminate_nexus_operation_execution --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_count_schedules 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_count_schedules --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_list_schedules 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_list_schedules --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_describe_schedule 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_describe_schedule --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_create_schedule 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_create_schedule --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_delete_schedule 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_delete_schedule --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_list_schedule_matching_times 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_list_schedule_matching_times --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_patch_schedule 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_patch_schedule --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_update_schedule 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_update_schedule --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_list_search_attributes 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_list_search_attributes --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_update_task_queue_config 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_update_task_queue_config --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_get_worker_build_id_compatibility 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_get_worker_build_id_compatibility --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_get_worker_versioning_rules 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_get_worker_versioning_rules --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_describe_task_queue 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_describe_task_queue --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_update_namespace 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_update_namespace --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_create_worker_deployment_version 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_create_worker_deployment_version --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_describe_worker_deployment_version 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_describe_worker_deployment_version --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_delete_worker_deployment_version 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_delete_worker_deployment_version --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_update_worker_deployment_version_compute_config 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_update_worker_deployment_version_compute_config --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_update_worker_deployment_version_metadata 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_update_worker_deployment_version_metadata --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_validate_worker_deployment_version_compute_config 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_validate_worker_deployment_version_compute_config --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_list_worker_deployments 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_list_worker_deployments --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_describe_worker_deployment 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_describe_worker_deployment --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_create_worker_deployment 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_create_worker_deployment --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_delete_worker_deployment 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_delete_worker_deployment --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_set_worker_deployment_current_version 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_set_worker_deployment_current_version --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_set_worker_deployment_manager 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_set_worker_deployment_manager --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_set_worker_deployment_ramping_version 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_set_worker_deployment_ramping_version --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_get_worker_task_reachability 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_get_worker_task_reachability --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_list_workers 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_list_workers --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_describe_worker 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_describe_worker --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_fetch_worker_config 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_fetch_worker_config --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_record_worker_heartbeat 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_record_worker_heartbeat --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_update_worker_config 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_update_worker_config --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_count_workflow_executions 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_count_workflow_executions --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_list_workflow_rules 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_list_workflow_rules --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_create_workflow_rule 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_create_workflow_rule --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_describe_workflow_rule 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_describe_workflow_rule --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_delete_workflow_rule 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_delete_workflow_rule --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_list_workflow_executions 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_list_workflow_executions --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_describe_workflow_execution 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_describe_workflow_execution --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_get_workflow_execution_history 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_get_workflow_execution_history --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_get_workflow_execution_history_reverse 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_get_workflow_execution_history_reverse --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_query_workflow 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_query_workflow --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_trigger_workflow_rule 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_trigger_workflow_rule --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_start_workflow_execution 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_start_workflow_execution --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_respond_activity_task_completed_by_id_2 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_respond_activity_task_completed_by_id_2 --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_respond_activity_task_failed_by_id_2 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_respond_activity_task_failed_by_id_2 --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_record_activity_task_heartbeat_by_id_2 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_record_activity_task_heartbeat_by_id_2 --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_pause_activity_execution_2 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_pause_activity_execution_2 --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_reset_activity_execution_2 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_reset_activity_execution_2 --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_respond_activity_task_canceled_by_id_2 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_respond_activity_task_canceled_by_id_2 --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_unpause_activity_execution_2 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_unpause_activity_execution_2 --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_update_activity_execution_options_2 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_update_activity_execution_options_2 --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_pause_workflow_execution 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_pause_workflow_execution --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_signal_with_start_workflow_execution 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_signal_with_start_workflow_execution --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_unpause_workflow_execution 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_unpause_workflow_execution --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_request_cancel_workflow_execution 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_request_cancel_workflow_execution --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_reset_workflow_execution 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_reset_workflow_execution --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_signal_workflow_execution 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_signal_workflow_execution --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_terminate_workflow_execution 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_terminate_workflow_execution --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_update_workflow_execution_options 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_update_workflow_execution_options --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_update_workflow_execution 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_update_workflow_execution --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_list_nexus_endpoints 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_list_nexus_endpoints --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_create_nexus_endpoint 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_create_nexus_endpoint --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_get_nexus_endpoint 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_get_nexus_endpoint --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_delete_nexus_endpoint 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_delete_nexus_endpoint --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_update_nexus_endpoint 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_update_nexus_endpoint --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_get_system_info 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_get_system_info --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_get_cluster_info_2 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_get_cluster_info_2 --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_list_namespaces_2 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_list_namespaces_2 --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_register_namespace_2 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_register_namespace_2 --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_describe_namespace_2 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_describe_namespace_2 --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_list_search_attributes_2 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_list_search_attributes_2 --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_update_namespace_2 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_update_namespace_2 --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_list_nexus_endpoints_2 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_list_nexus_endpoints_2 --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_create_nexus_endpoint_2 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_create_nexus_endpoint_2 --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_get_nexus_endpoint_2 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_get_nexus_endpoint_2 --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_delete_nexus_endpoint_2 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_delete_nexus_endpoint_2 --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_update_nexus_endpoint_2 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_update_nexus_endpoint_2 --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_list_activity_executions_2 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_list_activity_executions_2 --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_pause_activity_2 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_pause_activity_2 --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_reset_activity_2 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_reset_activity_2 --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_unpause_activity_2 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_unpause_activity_2 --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_update_activity_options_2 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_update_activity_options_2 --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_describe_activity_execution_2 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_describe_activity_execution_2 --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_start_activity_execution_2 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_start_activity_execution_2 --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_request_cancel_activity_execution_2 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_request_cancel_activity_execution_2 --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_respond_activity_task_completed_by_id_3 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_respond_activity_task_completed_by_id_3 --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_respond_activity_task_failed_by_id_3 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_respond_activity_task_failed_by_id_3 --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_record_activity_task_heartbeat_by_id_3 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_record_activity_task_heartbeat_by_id_3 --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_poll_activity_execution_2 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_poll_activity_execution_2 --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_pause_activity_execution_3 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_pause_activity_execution_3 --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_reset_activity_execution_3 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_reset_activity_execution_3 --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_respond_activity_task_canceled_by_id_3 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_respond_activity_task_canceled_by_id_3 --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_terminate_activity_execution_2 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_terminate_activity_execution_2 --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_unpause_activity_execution_3 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_unpause_activity_execution_3 --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_update_activity_execution_options_3 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_update_activity_execution_options_3 --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_respond_activity_task_completed_2 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_respond_activity_task_completed_2 --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_count_activity_executions_2 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_count_activity_executions_2 --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_respond_activity_task_failed_2 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_respond_activity_task_failed_2 --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_record_activity_task_heartbeat_2 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_record_activity_task_heartbeat_2 --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_respond_activity_task_canceled_2 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_respond_activity_task_canceled_2 --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_list_archived_workflow_executions_2 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_list_archived_workflow_executions_2 --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_list_batch_operations_2 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_list_batch_operations_2 --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_describe_batch_operation_2 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_describe_batch_operation_2 --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_start_batch_operation_2 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_start_batch_operation_2 --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_stop_batch_operation_2 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_stop_batch_operation_2 --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_set_current_deployment_2 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_set_current_deployment_2 --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_get_current_deployment_2 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_get_current_deployment_2 --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_list_deployments_2 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_list_deployments_2 --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_describe_deployment_2 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_describe_deployment_2 --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_get_deployment_reachability_2 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_get_deployment_reachability_2 --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_count_nexus_operation_executions_2 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_count_nexus_operation_executions_2 --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_list_nexus_operation_executions_2 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_list_nexus_operation_executions_2 --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_describe_nexus_operation_execution_2 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_describe_nexus_operation_execution_2 --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_start_nexus_operation_execution_2 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_start_nexus_operation_execution_2 --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_request_cancel_nexus_operation_execution_2 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_request_cancel_nexus_operation_execution_2 --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_poll_nexus_operation_execution_2 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_poll_nexus_operation_execution_2 --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_terminate_nexus_operation_execution_2 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_terminate_nexus_operation_execution_2 --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_count_schedules_2 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_count_schedules_2 --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_list_schedules_2 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_list_schedules_2 --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_describe_schedule_2 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_describe_schedule_2 --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_create_schedule_2 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_create_schedule_2 --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_delete_schedule_2 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_delete_schedule_2 --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_list_schedule_matching_times_2 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_list_schedule_matching_times_2 --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_patch_schedule_2 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_patch_schedule_2 --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_update_schedule_2 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_update_schedule_2 --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_update_task_queue_config_2 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_update_task_queue_config_2 --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_get_worker_build_id_compatibility_2 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_get_worker_build_id_compatibility_2 --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_get_worker_versioning_rules_2 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_get_worker_versioning_rules_2 --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_describe_task_queue_2 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_describe_task_queue_2 --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_create_worker_deployment_version_2 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_create_worker_deployment_version_2 --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_describe_worker_deployment_version_2 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_describe_worker_deployment_version_2 --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_delete_worker_deployment_version_2 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_delete_worker_deployment_version_2 --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_update_worker_deployment_version_compute_config_2 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_update_worker_deployment_version_compute_config_2 --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_update_worker_deployment_version_metadata_2 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_update_worker_deployment_version_metadata_2 --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_validate_worker_deployment_version_compute_config_2 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_validate_worker_deployment_version_compute_config_2 --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_list_worker_deployments_2 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_list_worker_deployments_2 --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_describe_worker_deployment_2 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_describe_worker_deployment_2 --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_create_worker_deployment_2 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_create_worker_deployment_2 --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_delete_worker_deployment_2 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_delete_worker_deployment_2 --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_set_worker_deployment_current_version_2 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_set_worker_deployment_current_version_2 --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_set_worker_deployment_manager_2 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_set_worker_deployment_manager_2 --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_set_worker_deployment_ramping_version_2 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_set_worker_deployment_ramping_version_2 --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_get_worker_task_reachability_2 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_get_worker_task_reachability_2 --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_list_workers_2 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_list_workers_2 --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_describe_worker_2 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_describe_worker_2 --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_fetch_worker_config_2 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_fetch_worker_config_2 --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_record_worker_heartbeat_2 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_record_worker_heartbeat_2 --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_update_worker_config_2 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_update_worker_config_2 --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_count_workflow_executions_2 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_count_workflow_executions_2 --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_list_workflow_rules_2 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_list_workflow_rules_2 --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_create_workflow_rule_2 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_create_workflow_rule_2 --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_describe_workflow_rule_2 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_describe_workflow_rule_2 --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_delete_workflow_rule_2 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_delete_workflow_rule_2 --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_list_workflow_executions_2 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_list_workflow_executions_2 --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_describe_workflow_execution_2 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_describe_workflow_execution_2 --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_get_workflow_execution_history_2 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_get_workflow_execution_history_2 --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_get_workflow_execution_history_reverse_2 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_get_workflow_execution_history_reverse_2 --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_query_workflow_2 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_query_workflow_2 --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_trigger_workflow_rule_2 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_trigger_workflow_rule_2 --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_start_workflow_execution_2 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_start_workflow_execution_2 --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_respond_activity_task_completed_by_id_4 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_respond_activity_task_completed_by_id_4 --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_respond_activity_task_failed_by_id_4 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_respond_activity_task_failed_by_id_4 --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_record_activity_task_heartbeat_by_id_4 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_record_activity_task_heartbeat_by_id_4 --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_pause_activity_execution_4 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_pause_activity_execution_4 --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_reset_activity_execution_4 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_reset_activity_execution_4 --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_respond_activity_task_canceled_by_id_4 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_respond_activity_task_canceled_by_id_4 --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_unpause_activity_execution_4 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_unpause_activity_execution_4 --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_update_activity_execution_options_4 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_update_activity_execution_options_4 --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_pause_workflow_execution_2 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_pause_workflow_execution_2 --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_signal_with_start_workflow_execution_2 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_signal_with_start_workflow_execution_2 --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_unpause_workflow_execution_2 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_unpause_workflow_execution_2 --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_request_cancel_workflow_execution_2 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_request_cancel_workflow_execution_2 --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_reset_workflow_execution_2 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_reset_workflow_execution_2 --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_signal_workflow_execution_2 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_signal_workflow_execution_2 --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_terminate_workflow_execution_2 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_terminate_workflow_execution_2 --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_update_workflow_execution_options_2 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_update_workflow_execution_options_2 --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_update_workflow_execution_2 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_update_workflow_execution_2 --json
ParameterTypeRequiredDescription
No parameters.
temporal.temporal_get_system_info_2 0 parameters
Schema command
kosmo integrations:schema temporal.temporal_get_system_info_2 --json
ParameterTypeRequiredDescription
No parameters.

Permissions

Headless calls still follow the integration read/write permission policy. Configure read/write defaults with integrations:configure. Add --force only for trusted automation that should bypass that policy.