> ## Documentation Index
> Fetch the complete documentation index at: https://docs.tilebox.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Workflows.UndeployRelease

```go theme={"system"}
func (workflowClient) UndeployRelease(
    ctx context.Context,
    workflowSlug string,
    releaseID uuid.UUID,
    clusterSlugs []string,
) (*workflows.WorkflowReleaseDeployment, error)
```

Remove a workflow release from one or more clusters.

## Parameters

<ParamField path="workflowSlug" type="string" required>
  The workflow slug.
</ParamField>

<ParamField path="releaseID" type="uuid.UUID" required>
  The ID of the workflow release to remove from clusters.
</ParamField>

<ParamField path="clusterSlugs" type="[]string" required>
  The clusters to remove the release from.
</ParamField>

## Returns

The result, including the release and affected clusters.

<RequestExample>
  ```go Go theme={"system"}
  deployment, err := client.Workflows.UndeployRelease(ctx,
      workflow.Slug,
      release.ID,
      []string{"production"},
  )
  ```
</RequestExample>
