productivity
Temporal MCP, CLI, and Lua Integration for AI Agents
Temporal integration docs for AI agents: MCP gateway setup, Temporal CLI commands, Lua API reference, credentials, and function schemas.Temporal for agents
Credentials can be configured manually in web or CLI hosts.
Use this integration from Lua code mode, the headless integrations CLI, or the KosmoKrator MCP gateway. The same package metadata powers all three surfaces.
Agent Surfaces
Machine-Readable Metadata
Function Catalog
| Function | Type | Parameters | Description |
|---|---|---|---|
temporal.temporal_get_cluster_info | Read read | 0 | Get cluster info Official Temporal endpoint: GET /api/v1/cluster-info GetClusterInfo returns information about temporal cluster |
temporal.temporal_list_namespaces | Read read | 0 | List namespaces Official Temporal endpoint: GET /api/v1/namespaces ListNamespaces returns the information and configuration for all namespaces. |
temporal.temporal_register_namespace | Write write | 0 | 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 |
temporal.temporal_describe_namespace | Read read | 0 | Describe namespace Official Temporal endpoint: GET /api/v1/namespaces/{namespace} DescribeNamespace returns the information and configuration for a registered namespace. |
temporal.temporal_list_activity_executions | Read read | 0 | 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. |
temporal.temporal_pause_activity | Write write | 0 | 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 |
temporal.temporal_reset_activity | Write write | 0 | 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 |
temporal.temporal_unpause_activity | Write write | 0 | 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 |
temporal.temporal_update_activity_options | Write write | 0 | 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 |
temporal.temporal_describe_activity_execution | Read read | 0 | 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 |
temporal.temporal_start_activity_execution | Write write | 0 | 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 |
temporal.temporal_request_cancel_activity_execution | Write write | 0 | 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 |
temporal.temporal_respond_activity_task_completed_by_id | Write write | 0 | 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 |
temporal.temporal_respond_activity_task_failed_by_id | Write write | 0 | 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 |
temporal.temporal_record_activity_task_heartbeat_by_id | Write write | 0 | 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 |
temporal.temporal_poll_activity_execution | Read read | 0 | 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). |
temporal.temporal_pause_activity_execution | Write write | 0 | 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 |
temporal.temporal_reset_activity_execution | Write write | 0 | 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 |
temporal.temporal_respond_activity_task_canceled_by_id | Write write | 0 | 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/ |
temporal.temporal_terminate_activity_execution | Write write | 0 | 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 |
temporal.temporal_unpause_activity_execution | Write write | 0 | 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 |
temporal.temporal_update_activity_execution_options | Write write | 0 | 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. |
temporal.temporal_respond_activity_task_completed | Write write | 0 | 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 |
temporal.temporal_count_activity_executions | Read read | 0 | 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. |
temporal.temporal_respond_activity_task_failed | Write write | 0 | 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 |
temporal.temporal_record_activity_task_heartbeat | Write write | 0 | 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 |
temporal.temporal_respond_activity_task_canceled | Write write | 0 | 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 |
temporal.temporal_list_archived_workflow_executions | Read read | 0 | 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. |
temporal.temporal_list_batch_operations | Read read | 0 | List batch operations Official Temporal endpoint: GET /api/v1/namespaces/{namespace}/batch-operations ListBatchOperations returns a list of batch operations |
temporal.temporal_describe_batch_operation | Read read | 0 | Describe batch operation Official Temporal endpoint: GET /api/v1/namespaces/{namespace}/batch-operations/{jobId} DescribeBatchOperation returns the information about a batch operation |
temporal.temporal_start_batch_operation | Write write | 0 | Start batch operation Official Temporal endpoint: POST /api/v1/namespaces/{namespace}/batch-operations/{jobId} StartBatchOperation starts a new batch operation |
temporal.temporal_stop_batch_operation | Write write | 0 | Stop batch operation Official Temporal endpoint: POST /api/v1/namespaces/{namespace}/batch-operations/{jobId}/stop StopBatchOperation stops a batch operation |
temporal.temporal_set_current_deployment | Write write | 0 | 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 |
temporal.temporal_get_current_deployment | Read read | 0 | 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 |
temporal.temporal_list_deployments | Read read | 0 | 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 |
temporal.temporal_describe_deployment | Read read | 0 | 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 |
temporal.temporal_get_deployment_reachability | Read read | 0 | 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 |
temporal.temporal_count_nexus_operation_executions | Read read | 0 | 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. |
temporal.temporal_list_nexus_operation_executions | Read read | 0 | 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. |
temporal.temporal_describe_nexus_operation_execution | Read read | 0 | 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 |
temporal.temporal_start_nexus_operation_execution | Write write | 0 | 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 |
temporal.temporal_request_cancel_nexus_operation_execution | Write write | 0 | 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 |
temporal.temporal_poll_nexus_operation_execution | Read read | 0 | 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 |
temporal.temporal_terminate_nexus_operation_execution | Write write | 0 | 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 |
temporal.temporal_count_schedules | Read read | 0 | Count schedules Official Temporal endpoint: GET /api/v1/namespaces/{namespace}/schedule-count CountSchedules is a visibility API to count schedules in a specific namespace. |
temporal.temporal_list_schedules | Read read | 0 | List schedules Official Temporal endpoint: GET /api/v1/namespaces/{namespace}/schedules List all schedules in a namespace. |
temporal.temporal_describe_schedule | Read read | 0 | Describe schedule Official Temporal endpoint: GET /api/v1/namespaces/{namespace}/schedules/{scheduleId} Returns the schedule description and current state of an existing schedule. |
temporal.temporal_create_schedule | Write write | 0 | Create schedule Official Temporal endpoint: POST /api/v1/namespaces/{namespace}/schedules/{scheduleId} Creates a new schedule. |
temporal.temporal_delete_schedule | Write write | 0 | Delete schedule Official Temporal endpoint: DELETE /api/v1/namespaces/{namespace}/schedules/{scheduleId} Deletes a schedule, removing it from the system. |
temporal.temporal_list_schedule_matching_times | Read read | 0 | List schedule matching times Official Temporal endpoint: GET /api/v1/namespaces/{namespace}/schedules/{scheduleId}/matching-times Lists matching times within a range. |
temporal.temporal_patch_schedule | Write write | 0 | 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. |
temporal.temporal_update_schedule | Write write | 0 | Update schedule Official Temporal endpoint: POST /api/v1/namespaces/{namespace}/schedules/{scheduleId}/update Changes the configuration or state of an existing schedule. |
temporal.temporal_list_search_attributes | Read read | 0 | List search attributes Official Temporal endpoint: GET /api/v1/namespaces/{namespace}/search-attributes ListSearchAttributes returns comprehensive information about search attributes. |
temporal.temporal_update_task_queue_config | Write write | 0 | 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 |
temporal.temporal_get_worker_build_id_compatibility | Read read | 0 | 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 |
temporal.temporal_get_worker_versioning_rules | Read read | 0 | 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 |
temporal.temporal_describe_task_queue | Read read | 0 | 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 |
temporal.temporal_update_namespace | Write write | 0 | Update namespace Official Temporal endpoint: POST /api/v1/namespaces/{namespace}/update UpdateNamespace is used to update the information and configuration of a registered namespace. |
temporal.temporal_create_worker_deployment_version | Write write | 0 | 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 |
temporal.temporal_describe_worker_deployment_version | Read read | 0 | 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 |
temporal.temporal_delete_worker_deployment_version | Write write | 0 | 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 |
temporal.temporal_update_worker_deployment_version_compute_config | Write write | 0 | 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 |
temporal.temporal_update_worker_deployment_version_metadata | Write write | 0 | 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 |
temporal.temporal_validate_worker_deployment_version_compute_config | Write write | 0 | 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 |
temporal.temporal_list_worker_deployments | Read read | 0 | 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 |
temporal.temporal_describe_worker_deployment | Read read | 0 | 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 |
temporal.temporal_create_worker_deployment | Write write | 0 | 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 |
temporal.temporal_delete_worker_deployment | Write write | 0 | 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 |
temporal.temporal_set_worker_deployment_current_version | Write write | 0 | 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 |
temporal.temporal_set_worker_deployment_manager | Write write | 0 | 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 |
temporal.temporal_set_worker_deployment_ramping_version | Write write | 0 | 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 |
temporal.temporal_get_worker_task_reachability | Read read | 0 | 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 |
temporal.temporal_list_workers | Read read | 0 | 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. |
temporal.temporal_describe_worker | Read read | 0 | Describe worker Official Temporal endpoint: GET /api/v1/namespaces/{namespace}/workers/describe/{workerInstanceKey} DescribeWorker returns information about the specified worker. |
temporal.temporal_fetch_worker_config | Write write | 0 | Fetch worker config Official Temporal endpoint: POST /api/v1/namespaces/{namespace}/workers/fetch-config FetchWorkerConfig returns the worker configuration for a specific worker. |
temporal.temporal_record_worker_heartbeat | Write write | 0 | Record worker heartbeat Official Temporal endpoint: POST /api/v1/namespaces/{namespace}/workers/heartbeat WorkerHeartbeat receive heartbeat request from the worker. |
temporal.temporal_update_worker_config | Write write | 0 | 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. |
temporal.temporal_count_workflow_executions | Read read | 0 | 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. |
temporal.temporal_list_workflow_rules | Read read | 0 | List workflow rules Official Temporal endpoint: GET /api/v1/namespaces/{namespace}/workflow-rules Return all namespace workflow rules |
temporal.temporal_create_workflow_rule | Write write | 0 | 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 |
temporal.temporal_describe_workflow_rule | Read read | 0 | 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 |
temporal.temporal_delete_workflow_rule | Write write | 0 | Delete workflow rule Official Temporal endpoint: DELETE /api/v1/namespaces/{namespace}/workflow-rules/{ruleId} Delete rule by rule id |
temporal.temporal_list_workflow_executions | Read read | 0 | 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. |
temporal.temporal_describe_workflow_execution | Read read | 0 | Describe workflow execution Official Temporal endpoint: GET /api/v1/namespaces/{namespace}/workflows/{execution.workflow_id} DescribeWorkflowExecution returns information about the specified workflow execution. |
temporal.temporal_get_workflow_execution_history | Read read | 0 | 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 |
temporal.temporal_get_workflow_execution_history_reverse | Read read | 0 | 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 |
temporal.temporal_query_workflow | Write write | 0 | 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. |
temporal.temporal_trigger_workflow_rule | Write write | 0 | 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 |
temporal.temporal_start_workflow_execution | Write write | 0 | 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 |
temporal.temporal_respond_activity_task_completed_by_id_2 | Write write | 0 | 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 |
temporal.temporal_respond_activity_task_failed_by_id_2 | Write write | 0 | 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 |
temporal.temporal_record_activity_task_heartbeat_by_id_2 | Write write | 0 | 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 |
temporal.temporal_pause_activity_execution_2 | Write write | 0 | 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 |
temporal.temporal_reset_activity_execution_2 | Write write | 0 | 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 |
temporal.temporal_respond_activity_task_canceled_by_id_2 | Write write | 0 | 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 |
temporal.temporal_unpause_activity_execution_2 | Write write | 0 | 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 |
temporal.temporal_update_activity_execution_options_2 | Write write | 0 | 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 |
temporal.temporal_pause_workflow_execution | Write write | 0 | 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 |
temporal.temporal_signal_with_start_workflow_execution | Write write | 0 | 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 |
temporal.temporal_unpause_workflow_execution | Write write | 0 | 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 |
temporal.temporal_request_cancel_workflow_execution | Write write | 0 | 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 |
temporal.temporal_reset_workflow_execution | Write write | 0 | 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 |
temporal.temporal_signal_workflow_execution | Write write | 0 | 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 |
temporal.temporal_terminate_workflow_execution | Write write | 0 | 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_ |
temporal.temporal_update_workflow_execution_options | Write write | 0 | 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 |
temporal.temporal_update_workflow_execution | Write write | 0 | 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. |
temporal.temporal_list_nexus_endpoints | Read read | 0 | 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 |
temporal.temporal_create_nexus_endpoint | Write write | 0 | 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 |
temporal.temporal_get_nexus_endpoint | Read read | 0 | 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. |
temporal.temporal_delete_nexus_endpoint | Write write | 0 | Delete nexus endpoint Official Temporal endpoint: DELETE /api/v1/nexus/endpoints/{id} Delete an incoming Nexus service by ID. |
temporal.temporal_update_nexus_endpoint | Write write | 0 | 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 |
temporal.temporal_get_system_info | Read read | 0 | Get system info Official Temporal endpoint: GET /api/v1/system-info GetSystemInfo returns information about the system. |
temporal.temporal_get_cluster_info_2 | Read read | 0 | Get cluster info Official Temporal endpoint: GET /cluster GetClusterInfo returns information about temporal cluster |
temporal.temporal_list_namespaces_2 | Read read | 0 | List namespaces Official Temporal endpoint: GET /cluster/namespaces ListNamespaces returns the information and configuration for all namespaces. |
temporal.temporal_register_namespace_2 | Write write | 0 | 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 |
temporal.temporal_describe_namespace_2 | Read read | 0 | Describe namespace Official Temporal endpoint: GET /cluster/namespaces/{namespace} DescribeNamespace returns the information and configuration for a registered namespace. |
temporal.temporal_list_search_attributes_2 | Read read | 0 | List search attributes Official Temporal endpoint: GET /cluster/namespaces/{namespace}/search-attributes ListSearchAttributes returns comprehensive information about search attributes. |
temporal.temporal_update_namespace_2 | Write write | 0 | Update namespace Official Temporal endpoint: POST /cluster/namespaces/{namespace}/update UpdateNamespace is used to update the information and configuration of a registered namespace. |
temporal.temporal_list_nexus_endpoints_2 | Read read | 0 | 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 |
temporal.temporal_create_nexus_endpoint_2 | Write write | 0 | 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 |
temporal.temporal_get_nexus_endpoint_2 | Read read | 0 | 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. |
temporal.temporal_delete_nexus_endpoint_2 | Write write | 0 | Delete nexus endpoint Official Temporal endpoint: DELETE /cluster/nexus/endpoints/{id} Delete an incoming Nexus service by ID. |
temporal.temporal_update_nexus_endpoint_2 | Write write | 0 | 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 |
temporal.temporal_list_activity_executions_2 | Read read | 0 | List activity executions Official Temporal endpoint: GET /namespaces/{namespace}/activities ListActivityExecutions is a visibility API to list activity executions in a specific namespace. |
temporal.temporal_pause_activity_2 | Write write | 0 | 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 |
temporal.temporal_reset_activity_2 | Write write | 0 | 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 |
temporal.temporal_unpause_activity_2 | Write write | 0 | 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 |
temporal.temporal_update_activity_options_2 | Write write | 0 | 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 |
temporal.temporal_describe_activity_execution_2 | Read read | 0 | 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 |
temporal.temporal_start_activity_execution_2 | Write write | 0 | 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 |
temporal.temporal_request_cancel_activity_execution_2 | Write write | 0 | 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 |
temporal.temporal_respond_activity_task_completed_by_id_3 | Write write | 0 | 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 |
temporal.temporal_respond_activity_task_failed_by_id_3 | Write write | 0 | 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 |
temporal.temporal_record_activity_task_heartbeat_by_id_3 | Write write | 0 | 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 |
temporal.temporal_poll_activity_execution_2 | Read read | 0 | 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). |
temporal.temporal_pause_activity_execution_3 | Write write | 0 | 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 |
temporal.temporal_reset_activity_execution_3 | Write write | 0 | 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 |
temporal.temporal_respond_activity_task_canceled_by_id_3 | Write write | 0 | 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 |
temporal.temporal_terminate_activity_execution_2 | Write write | 0 | 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 |
temporal.temporal_unpause_activity_execution_3 | Write write | 0 | 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 |
temporal.temporal_update_activity_execution_options_3 | Write write | 0 | 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 |
temporal.temporal_respond_activity_task_completed_2 | Write write | 0 | 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 |
temporal.temporal_count_activity_executions_2 | Read read | 0 | Count activity executions Official Temporal endpoint: GET /namespaces/{namespace}/activity-count CountActivityExecutions is a visibility API to count activity executions in a specific namespace. |
temporal.temporal_respond_activity_task_failed_2 | Write write | 0 | 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 |
temporal.temporal_record_activity_task_heartbeat_2 | Write write | 0 | 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 |
temporal.temporal_respond_activity_task_canceled_2 | Write write | 0 | 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 |
temporal.temporal_list_archived_workflow_executions_2 | Read read | 0 | 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. |
temporal.temporal_list_batch_operations_2 | Read read | 0 | List batch operations Official Temporal endpoint: GET /namespaces/{namespace}/batch-operations ListBatchOperations returns a list of batch operations |
temporal.temporal_describe_batch_operation_2 | Read read | 0 | Describe batch operation Official Temporal endpoint: GET /namespaces/{namespace}/batch-operations/{jobId} DescribeBatchOperation returns the information about a batch operation |
temporal.temporal_start_batch_operation_2 | Write write | 0 | Start batch operation Official Temporal endpoint: POST /namespaces/{namespace}/batch-operations/{jobId} StartBatchOperation starts a new batch operation |
temporal.temporal_stop_batch_operation_2 | Write write | 0 | Stop batch operation Official Temporal endpoint: POST /namespaces/{namespace}/batch-operations/{jobId}/stop StopBatchOperation stops a batch operation |
temporal.temporal_set_current_deployment_2 | Write write | 0 | 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 |
temporal.temporal_get_current_deployment_2 | Read read | 0 | 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 |
temporal.temporal_list_deployments_2 | Read read | 0 | 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 |
temporal.temporal_describe_deployment_2 | Read read | 0 | 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 |
temporal.temporal_get_deployment_reachability_2 | Read read | 0 | 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 |
temporal.temporal_count_nexus_operation_executions_2 | Read read | 0 | 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. |
temporal.temporal_list_nexus_operation_executions_2 | Read read | 0 | 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. |
temporal.temporal_describe_nexus_operation_execution_2 | Read read | 0 | 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 |
temporal.temporal_start_nexus_operation_execution_2 | Write write | 0 | 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 |
temporal.temporal_request_cancel_nexus_operation_execution_2 | Write write | 0 | 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 |
temporal.temporal_poll_nexus_operation_execution_2 | Read read | 0 | 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 |
temporal.temporal_terminate_nexus_operation_execution_2 | Write write | 0 | Terminate nexus operation execution Official Temporal endpoint: POST /namespaces/{namespace}/nexus-operations/{operationId}/terminate TerminateNexusOperationExecution terminates an existing Nexus operation immediately. Termination happens i |
temporal.temporal_count_schedules_2 | Read read | 0 | Count schedules Official Temporal endpoint: GET /namespaces/{namespace}/schedule-count CountSchedules is a visibility API to count schedules in a specific namespace. |
temporal.temporal_list_schedules_2 | Read read | 0 | List schedules Official Temporal endpoint: GET /namespaces/{namespace}/schedules List all schedules in a namespace. |
temporal.temporal_describe_schedule_2 | Read read | 0 | Describe schedule Official Temporal endpoint: GET /namespaces/{namespace}/schedules/{scheduleId} Returns the schedule description and current state of an existing schedule. |
temporal.temporal_create_schedule_2 | Write write | 0 | Create schedule Official Temporal endpoint: POST /namespaces/{namespace}/schedules/{scheduleId} Creates a new schedule. |
temporal.temporal_delete_schedule_2 | Write write | 0 | Delete schedule Official Temporal endpoint: DELETE /namespaces/{namespace}/schedules/{scheduleId} Deletes a schedule, removing it from the system. |
temporal.temporal_list_schedule_matching_times_2 | Read read | 0 | List schedule matching times Official Temporal endpoint: GET /namespaces/{namespace}/schedules/{scheduleId}/matching-times Lists matching times within a range. |
temporal.temporal_patch_schedule_2 | Write write | 0 | Patch schedule Official Temporal endpoint: POST /namespaces/{namespace}/schedules/{scheduleId}/patch Makes a specific change to a schedule or triggers an immediate action. |
temporal.temporal_update_schedule_2 | Write write | 0 | Update schedule Official Temporal endpoint: POST /namespaces/{namespace}/schedules/{scheduleId}/update Changes the configuration or state of an existing schedule. |
temporal.temporal_update_task_queue_config_2 | Write write | 0 | 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- |
temporal.temporal_get_worker_build_id_compatibility_2 | Read read | 0 | 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 |
temporal.temporal_get_worker_versioning_rules_2 | Read read | 0 | 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 |
temporal.temporal_describe_task_queue_2 | Read read | 0 | 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 |
temporal.temporal_create_worker_deployment_version_2 | Write write | 0 | 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 |
temporal.temporal_describe_worker_deployment_version_2 | Read read | 0 | 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 |
temporal.temporal_delete_worker_deployment_version_2 | Write write | 0 | 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 |
temporal.temporal_update_worker_deployment_version_compute_config_2 | Write write | 0 | 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 |
temporal.temporal_update_worker_deployment_version_metadata_2 | Write write | 0 | 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 |
temporal.temporal_validate_worker_deployment_version_compute_config_2 | Write write | 0 | 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 |
temporal.temporal_list_worker_deployments_2 | Read read | 0 | 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 |
temporal.temporal_describe_worker_deployment_2 | Read read | 0 | 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. |
temporal.temporal_create_worker_deployment_2 | Write write | 0 | 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. |
temporal.temporal_delete_worker_deployment_2 | Write write | 0 | 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 |
temporal.temporal_set_worker_deployment_current_version_2 | Write write | 0 | 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 |
temporal.temporal_set_worker_deployment_manager_2 | Write write | 0 | 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 |
temporal.temporal_set_worker_deployment_ramping_version_2 | Write write | 0 | 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 |
temporal.temporal_get_worker_task_reachability_2 | Read read | 0 | 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 |
temporal.temporal_list_workers_2 | Read read | 0 | List workers Official Temporal endpoint: GET /namespaces/{namespace}/workers ListWorkers is a visibility API to list worker status information in a specific namespace. |
temporal.temporal_describe_worker_2 | Read read | 0 | Describe worker Official Temporal endpoint: GET /namespaces/{namespace}/workers/describe/{workerInstanceKey} DescribeWorker returns information about the specified worker. |
temporal.temporal_fetch_worker_config_2 | Write write | 0 | Fetch worker config Official Temporal endpoint: POST /namespaces/{namespace}/workers/fetch-config FetchWorkerConfig returns the worker configuration for a specific worker. |
temporal.temporal_record_worker_heartbeat_2 | Write write | 0 | Record worker heartbeat Official Temporal endpoint: POST /namespaces/{namespace}/workers/heartbeat WorkerHeartbeat receive heartbeat request from the worker. |
temporal.temporal_update_worker_config_2 | Write write | 0 | 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 |
temporal.temporal_count_workflow_executions_2 | Read read | 0 | 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. |
temporal.temporal_list_workflow_rules_2 | Read read | 0 | List workflow rules Official Temporal endpoint: GET /namespaces/{namespace}/workflow-rules Return all namespace workflow rules |
temporal.temporal_create_workflow_rule_2 | Write write | 0 | 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 |
temporal.temporal_describe_workflow_rule_2 | Read read | 0 | 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 |
temporal.temporal_delete_workflow_rule_2 | Write write | 0 | Delete workflow rule Official Temporal endpoint: DELETE /namespaces/{namespace}/workflow-rules/{ruleId} Delete rule by rule id |
temporal.temporal_list_workflow_executions_2 | Read read | 0 | List workflow executions Official Temporal endpoint: GET /namespaces/{namespace}/workflows ListWorkflowExecutions is a visibility API to list workflow executions in a specific namespace. |
temporal.temporal_describe_workflow_execution_2 | Read read | 0 | Describe workflow execution Official Temporal endpoint: GET /namespaces/{namespace}/workflows/{execution.workflow_id} DescribeWorkflowExecution returns information about the specified workflow execution. |
temporal.temporal_get_workflow_execution_history_2 | Read read | 0 | 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 |
temporal.temporal_get_workflow_execution_history_reverse_2 | Read read | 0 | 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 |
temporal.temporal_query_workflow_2 | Write write | 0 | 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. |
temporal.temporal_trigger_workflow_rule_2 | Write write | 0 | 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 |
temporal.temporal_start_workflow_execution_2 | Write write | 0 | 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 |
temporal.temporal_respond_activity_task_completed_by_id_4 | Write write | 0 | 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 |
temporal.temporal_respond_activity_task_failed_by_id_4 | Write write | 0 | 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 |
temporal.temporal_record_activity_task_heartbeat_by_id_4 | Write write | 0 | 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 |
temporal.temporal_pause_activity_execution_4 | Write write | 0 | 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 |
temporal.temporal_reset_activity_execution_4 | Write write | 0 | 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 |
temporal.temporal_respond_activity_task_canceled_by_id_4 | Write write | 0 | 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 |
temporal.temporal_unpause_activity_execution_4 | Write write | 0 | 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 |
temporal.temporal_update_activity_execution_options_4 | Write write | 0 | 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 |
temporal.temporal_pause_workflow_execution_2 | Write write | 0 | 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 |
temporal.temporal_signal_with_start_workflow_execution_2 | Write write | 0 | 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 |
temporal.temporal_unpause_workflow_execution_2 | Write write | 0 | 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 |
temporal.temporal_request_cancel_workflow_execution_2 | Write write | 0 | 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 |
temporal.temporal_reset_workflow_execution_2 | Write write | 0 | 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 |
temporal.temporal_signal_workflow_execution_2 | Write write | 0 | 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 |
temporal.temporal_terminate_workflow_execution_2 | Write write | 0 | 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 |
temporal.temporal_update_workflow_execution_options_2 | Write write | 0 | 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 |
temporal.temporal_update_workflow_execution_2 | Write write | 0 | 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. |
temporal.temporal_get_system_info_2 | Read read | 0 | Get system info Official Temporal endpoint: GET /system-info GetSystemInfo returns information about the system. |