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

# Update Workspace

> Update information of a specified workspace



## OpenAPI

````yaml /docflow/en/rest-api/openapi.bundle.yaml post /api/app-api/sip/platform/v2/workspace/update
openapi: 3.0.0
info:
  title: DocFlow API
  description: >-
    DocFlow REST API, providing file upload and file processing result retrieval
    capabilities
  version: 2.8.4
servers:
  - url: https://docflow.textin.com
security:
  - ApiId: []
    SecretCode: []
paths:
  /api/app-api/sip/platform/v2/workspace/update:
    post:
      tags:
        - Workspace Management
      summary: Update Workspace
      description: Update information of a specified workspace
      operationId: updateWorkspace
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                workspace_id:
                  type: string
                  description: Workspace ID
                  example: '1234567890'
                name:
                  type: string
                  description: Workspace name
                  example: My Workspace
                  maxLength: 50
                description:
                  type: string
                  description: Workspace description
                  example: This is a workspace for invoice processing
                  maxLength: 500
                auth_scope:
                  type: integer
                  description: >-
                    Collaboration scope 0: Visible only to self 1: Visible to
                    enterprise members
                  example: 1
                  enum:
                    - 0
                    - 1
                callback_url:
                  type: string
                  description: Callback URL
                  example: https://example.com/callback
                callback_retry_time:
                  type: integer
                  description: Callback retry count
                  example: 3
                  minimum: 1
                  maximum: 3
              required:
                - workspace_id
                - name
                - auth_scope
      responses:
        '200':
          description: Successfully updated workspace
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CodeMessage'
components:
  schemas:
    CodeMessage:
      type: object
      properties:
        code:
          type: integer
          description: Status code
          example: 200
        msg:
          type: string
          description: Status description
      required:
        - code
        - msg
  securitySchemes:
    ApiId:
      type: apiKey
      in: header
      name: x-ti-app-id
    SecretCode:
      type: apiKey
      in: header
      name: x-ti-secret-code

````