---
title: "Bulk Unarchive Workflows"
method: PUT
path: "/v1/workflows/unarchive"
tags: ["workflows"]
---

# Bulk Unarchive Workflows

`PUT /v1/workflows/unarchive`

Bulk Unarchive Workflows

## Request body

- WorkflowBulkUnarchiveRequest
  - `workflow_ids` string[], required — List of workflow IDs to unarchive

## Response `200`

Successful Response

- WorkflowBulkUnarchiveResponse
  - `unarchived` Workflow[], required — Workflows that were successfully unarchived or were already unarchived
    - `id` string, uuid, required — Unique identifier of the workflow
    - `name` string, required — Name of the workflow
    - `display_name` string, required — Display name of the workflow
    - `type` 'code', required
    - `description` string, nullable — Description of the workflow
    - `customer_id` string, uuid, required — Customer ID of the workflow
    - `workspace_id` string, uuid, required — Workspace ID of the workflow
    - `shared_namespace` string, nullable — Reserved namespace for shared workflows (e.g., 'shared:my-shared-workflow')
    - `available_in_chat_assistant` boolean — Whether the workflow is available in chat assistant
    - `is_technical` boolean — Whether the workflow is technical (e.g. SDK-managed)
    - `archived` boolean — Whether the workflow is archived
    - `tags` string[] — Tags for filtering and discovery
  - `errored` WorkflowBulkError[] — Workflows that could not be unarchived and the corresponding error messages
    - `workflow_id` string, uuid, required — The requested workflow ID
    - `workflow` Workflow
      - `id` string, uuid, required — Unique identifier of the workflow
      - `name` string, required — Name of the workflow
      - `display_name` string, required — Display name of the workflow
      - `type` 'code', required
      - `description` string, nullable — Description of the workflow
      - `customer_id` string, uuid, required — Customer ID of the workflow
      - `workspace_id` string, uuid, required — Workspace ID of the workflow
      - `shared_namespace` string, nullable — Reserved namespace for shared workflows (e.g., 'shared:my-shared-workflow')
      - `available_in_chat_assistant` boolean — Whether the workflow is available in chat assistant
      - `is_technical` boolean — Whether the workflow is technical (e.g. SDK-managed)
      - `archived` boolean — Whether the workflow is archived
      - `tags` string[] — Tags for filtering and discovery
    - `message` string, required — Error message describing why the operation failed

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/mistral/apis/mistral-ai-api.md) · [All operations](https://skmtc.net/mistral/apis/mistral-ai-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/mistral/mistral-ai-api/revisions/61436a496404/schema)
