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