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

# Update My Organization

> Update the caller's own workspace (rename / set logo).



## OpenAPI

````yaml /api-reference/openapi.json patch /api/workspaces/me
openapi: 3.1.0
info:
  title: Blindsight API
  version: 0.1.0
  description: >-
    The full Blindsight REST surface, generated from the running application.
    Replace the server host with your own deployment.


    For the Runtime Security integration surface (scan, proxy, tool calls) see
    the Runtime Security spec, which is hand written and carries worked
    examples.
servers:
  - url: https://api.your-blindsight.com
    description: Your Blindsight deployment
security: []
paths:
  /api/workspaces/me:
    patch:
      tags:
        - workspaces
      summary: Update My Organization
      description: Update the caller's own workspace (rename / set logo).
      operationId: update_my_organization_api_workspaces_me_patch
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/OrganizationRename'
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OrganizationRead'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    OrganizationRename:
      properties:
        name:
          anyOf:
            - type: string
              maxLength: 255
              minLength: 1
            - type: 'null'
          title: Name
        logo_url:
          anyOf:
            - type: string
            - type: 'null'
          title: Logo Url
      type: object
      title: OrganizationRename
      description: Payload used by workspace admins on ``PATCH /api/workspaces/me``.
    OrganizationRead:
      properties:
        id:
          type: string
          title: Id
        name:
          type: string
          title: Name
        slug:
          type: string
          title: Slug
        type:
          type: string
          title: Type
        plan_slug:
          anyOf:
            - type: string
            - type: 'null'
          title: Plan Slug
        plan_tier:
          anyOf:
            - type: string
            - type: 'null'
          title: Plan Tier
        license_type:
          anyOf:
            - type: string
            - type: 'null'
          title: License Type
        license_key:
          anyOf:
            - type: string
            - type: 'null'
          title: License Key
        license_expires_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: License Expires At
        max_users:
          anyOf:
            - type: integer
            - type: 'null'
          title: Max Users
        max_datasets:
          anyOf:
            - type: integer
            - type: 'null'
          title: Max Datasets
        max_total_scans:
          anyOf:
            - type: integer
            - type: 'null'
          title: Max Total Scans
        max_concurrent_scans:
          anyOf:
            - type: integer
            - type: 'null'
          title: Max Concurrent Scans
        max_queue_size:
          anyOf:
            - type: integer
            - type: 'null'
          title: Max Queue Size
        max_dataset_size_bytes:
          anyOf:
            - type: integer
            - type: 'null'
          title: Max Dataset Size Bytes
        max_total_storage_bytes:
          anyOf:
            - type: integer
            - type: 'null'
          title: Max Total Storage Bytes
        logo_url:
          anyOf:
            - type: string
            - type: 'null'
          title: Logo Url
        billing_email:
          anyOf:
            - type: string
            - type: 'null'
          title: Billing Email
        created_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Created At
        updated_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Updated At
        member_count:
          type: integer
          title: Member Count
          default: 0
      type: object
      required:
        - id
        - name
        - slug
        - type
      title: OrganizationRead
      description: Wire-format for a workspace of ``type='organization'``.
    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
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError

````