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

# Reorder Tags

> Reorder workflow tags.

Provide a list of tag IDs in the desired order. The order field of each
tag will be updated to match its position in the list.

Note: Tags should be reordered within their respective groups.



## OpenAPI

````yaml /openapi.json put /v1/workflow-tags/reorder
openapi: 3.1.0
info:
  title: Cyberdesk Cloud
  description: >-
    The Cyberdesk API provides programmatic access to all platform features,
    enabling you to automate desktop tasks at scale.
  version: 1.0.0
servers:
  - url: https://api.cyberdesk.io
    description: Production server
  - url: https://cyberdesk-api-dev.fly.dev
    description: Development server
security: []
paths:
  /v1/workflow-tags/reorder:
    put:
      tags:
        - workflow-tags
      summary: Reorder Tags
      description: |-
        Reorder workflow tags.

        Provide a list of tag IDs in the desired order. The order field of each
        tag will be updated to match its position in the list.

        Note: Tags should be reordered within their respective groups.
      operationId: reorder_tags_v1_workflow_tags_reorder_put
      parameters:
        - name: Idempotency-Key
          in: header
          required: false
          description: >-
            Unique key for idempotent requests. If provided, the server ensures
            the request is processed at most once. Retries with the same key
            return the original response. SDKs auto-generate this for write
            requests.
          schema:
            type: string
            example: 550e8400-e29b-41d4-a716-446655440000
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ReorderRequest'
        required: true
      responses:
        '204':
          description: Successful Response
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    ReorderRequest:
      properties:
        ids:
          items:
            type: string
            format: uuid
          type: array
          maxItems: 1000
          minItems: 1
          title: Ids
          description: List of IDs in desired order
      type: object
      required:
        - ids
      title: ReorderRequest
      description: Schema for reordering tags or groups
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          additionalProperties: true
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````