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

# Upload Workspace Logo

> POST /workspace/logo — persist the real uploaded bytes (multipart
`file` field, or JSON `{content_type, data_b64}`) and serve them back
from GET /workspace/logo. No fabricated CDN URL.



## OpenAPI

````yaml /openapi.json post /v1/workspace/logo
openapi: 3.1.0
info:
  description: Causeloop Platform Backend
  title: Causeloop API
  version: 1.0.0
servers: []
security: []
paths:
  /v1/workspace/logo:
    post:
      tags:
        - settings
      summary: Upload Workspace Logo
      description: |-
        POST /workspace/logo — persist the real uploaded bytes (multipart
        `file` field, or JSON `{content_type, data_b64}`) and serve them back
        from GET /workspace/logo. No fabricated CDN URL.
      operationId: upload_workspace_logo_v1_workspace_logo_post
      responses:
        '200':
          content:
            application/json:
              schema: {}
          description: Successful Response
      security:
        - HTTPBearer: []
components:
  securitySchemes:
    HTTPBearer:
      scheme: bearer
      type: http

````