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

# Upload Rhombus key logo

> Uploads a logo image for Rhombus key devices, generating a unique UUID and storing the image with proper metadata and organization association.



## OpenAPI

````yaml https://api2.rhombussystems.com/api/openapi/public.json post /api/upload/rhombusKeyLogo
openapi: 3.0.1
info:
  contact:
    email: developer@rhombussystems.com
  description: >-
    This API is for use by Rhombus customers and partners.


    ## Authentication


    All requests require two headers:

    - `x-auth-scheme` — The authentication scheme identifier. Use `api-token`
    for standard API key auth, or `partner-api-token` for partner API auth.

    - `x-auth-apikey` — Your Rhombus API key.


    Example:

    ```

    POST /api/camera/getMinimalCameraStateList

    x-auth-scheme: api-token

    x-auth-apikey: YOUR_API_KEY

    Content-Type: application/json

    ```
  title: Rhombus API
  version: '1.0'
servers:
  - description: Production Server
    url: https://api2.rhombussystems.com
security:
  - ApiKeyAuth: []
paths:
  /api/upload/rhombusKeyLogo:
    post:
      tags:
        - Upload Webservice
      summary: Upload Rhombus key logo
      description: >-
        Uploads a logo image for Rhombus key devices, generating a unique UUID
        and storing the image with proper metadata and organization association.
      operationId: uploadRhombusKeyLogo
      parameters:
        - description: >-
            Authentication scheme identifier. Use `api-token` for standard API
            key authentication, `partner-api-token` for partner API key
            authentication. Must be paired with the `x-auth-apikey` header
            containing your API key.
          example: api-token
          in: header
          name: x-auth-scheme
          required: true
          schema:
            type: string
            default: api-token
            enum:
              - api-token
              - api
              - partner-api-token
              - partner-api
      requestBody:
        content:
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/FormDataMultiPart'
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Response'
          description: OK
components:
  schemas:
    FormDataMultiPart:
      type: object
      nullable: true
      properties:
        bodyParts:
          type: array
          items:
            $ref: '#/components/schemas/BodyPart'
          nullable: true
        contentDisposition:
          $ref: '#/components/schemas/ContentDisposition'
        entity:
          type: object
          nullable: true
        fields:
          type: object
          additionalProperties:
            type: array
            items:
              $ref: '#/components/schemas/FormDataBodyPart'
            nullable: true
          nullable: true
        headers:
          type: object
          additionalProperties:
            type: array
            items:
              type: string
              nullable: true
            nullable: true
          nullable: true
          properties:
            empty:
              type: boolean
              nullable: true
        mediaType:
          $ref: '#/components/schemas/MediaType'
        messageBodyWorkers:
          $ref: '#/components/schemas/MessageBodyWorkers'
        parameterizedHeaders:
          type: object
          additionalProperties:
            type: array
            items:
              $ref: '#/components/schemas/ParameterizedHeader'
            nullable: true
          nullable: true
          properties:
            empty:
              type: boolean
              nullable: true
        parent:
          $ref: '#/components/schemas/MultiPart'
        providers:
          $ref: '#/components/schemas/Providers'
    Response:
      type: object
      nullable: true
      properties:
        allowedMethods:
          type: array
          items:
            type: string
            nullable: true
          nullable: true
          uniqueItems: true
        closed:
          type: boolean
          nullable: true
        cookies:
          type: object
          additionalProperties:
            $ref: '#/components/schemas/NewCookie'
          nullable: true
        date:
          type: string
          format: date-time
          nullable: true
        entity:
          type: object
          nullable: true
        entityTag:
          $ref: '#/components/schemas/EntityTag'
        headers:
          type: object
          additionalProperties:
            type: array
            items:
              type: object
              nullable: true
            nullable: true
          nullable: true
          properties:
            empty:
              type: boolean
              nullable: true
        language:
          type: object
          nullable: true
          properties:
            country:
              type: string
              nullable: true
            displayCountry:
              type: string
              nullable: true
            displayLanguage:
              type: string
              nullable: true
            displayName:
              type: string
              nullable: true
            displayScript:
              type: string
              nullable: true
            displayVariant:
              type: string
              nullable: true
            extensionKeys:
              type: array
              items:
                type: string
                nullable: true
              nullable: true
              uniqueItems: true
            iso3Country:
              type: string
              nullable: true
            iso3Language:
              type: string
              nullable: true
            language:
              type: string
              nullable: true
            script:
              type: string
              nullable: true
            unicodeLocaleAttributes:
              type: array
              items:
                type: string
                nullable: true
              nullable: true
              uniqueItems: true
            unicodeLocaleKeys:
              type: array
              items:
                type: string
                nullable: true
              nullable: true
              uniqueItems: true
            variant:
              type: string
              nullable: true
        lastModified:
          type: string
          format: date-time
          nullable: true
        length:
          type: integer
          format: int32
          nullable: true
        links:
          type: array
          items:
            $ref: '#/components/schemas/Link'
          nullable: true
          uniqueItems: true
        location:
          type: string
          format: uri
          nullable: true
        mediaType:
          $ref: '#/components/schemas/MediaType'
        metadata:
          type: object
          additionalProperties:
            type: array
            items:
              type: object
              nullable: true
            nullable: true
          nullable: true
          properties:
            empty:
              type: boolean
              nullable: true
        status:
          type: integer
          format: int32
          nullable: true
        statusInfo:
          $ref: '#/components/schemas/StatusType'
        stringHeaders:
          type: object
          additionalProperties:
            type: array
            items:
              type: string
              nullable: true
            nullable: true
          nullable: true
          properties:
            empty:
              type: boolean
              nullable: true
    BodyPart:
      type: object
      nullable: true
      properties:
        contentDisposition:
          $ref: '#/components/schemas/ContentDisposition'
        entity:
          type: object
          nullable: true
        headers:
          type: object
          additionalProperties:
            type: array
            items:
              type: string
              nullable: true
            nullable: true
          nullable: true
          properties:
            empty:
              type: boolean
              nullable: true
        mediaType:
          $ref: '#/components/schemas/MediaType'
        messageBodyWorkers:
          $ref: '#/components/schemas/MessageBodyWorkers'
        parameterizedHeaders:
          type: object
          additionalProperties:
            type: array
            items:
              $ref: '#/components/schemas/ParameterizedHeader'
            nullable: true
          nullable: true
          properties:
            empty:
              type: boolean
              nullable: true
        parent:
          $ref: '#/components/schemas/MultiPart'
        providers:
          $ref: '#/components/schemas/Providers'
    ContentDisposition:
      type: object
      properties:
        attachment:
          type: boolean
          nullable: true
        charset:
          type: object
          nullable: true
          properties:
            registered:
              type: boolean
              nullable: true
        creationDate:
          type: string
          format: date-time
          nullable: true
        filename:
          type: string
          nullable: true
        formData:
          type: boolean
          nullable: true
        inline:
          type: boolean
          nullable: true
        modificationDate:
          type: string
          format: date-time
          nullable: true
        name:
          type: string
          nullable: true
        readDate:
          type: string
          format: date-time
          nullable: true
        size:
          type: integer
          format: int64
          nullable: true
        type:
          type: string
          nullable: true
    FormDataBodyPart:
      type: object
      nullable: true
      properties:
        content:
          type: object
          nullable: true
        contentDisposition:
          $ref: '#/components/schemas/ContentDisposition'
        entity:
          type: object
          nullable: true
        fileName:
          type: string
          nullable: true
        formDataContentDisposition:
          $ref: '#/components/schemas/FormDataContentDisposition'
        headers:
          type: object
          additionalProperties:
            type: array
            items:
              type: string
              nullable: true
            nullable: true
          nullable: true
          properties:
            empty:
              type: boolean
              nullable: true
        mediaType:
          $ref: '#/components/schemas/MediaType'
        messageBodyWorkers:
          $ref: '#/components/schemas/MessageBodyWorkers'
        name:
          type: string
          nullable: true
        parameterizedHeaders:
          type: object
          additionalProperties:
            type: array
            items:
              $ref: '#/components/schemas/ParameterizedHeader'
            nullable: true
          nullable: true
          properties:
            empty:
              type: boolean
              nullable: true
        parent:
          $ref: '#/components/schemas/MultiPart'
        providers:
          $ref: '#/components/schemas/Providers'
        simple:
          type: boolean
          nullable: true
        value:
          type: string
          nullable: true
    MediaType:
      type: object
      properties:
        charset:
          type: object
          nullable: true
          properties:
            registered:
              type: boolean
              nullable: true
        concrete:
          type: boolean
          nullable: true
        parameters:
          type: object
          additionalProperties:
            type: string
            nullable: true
          nullable: true
        qualityValue:
          type: number
          format: double
          nullable: true
        subtype:
          type: string
          nullable: true
        subtypeSuffix:
          type: string
          nullable: true
        type:
          type: string
          nullable: true
        wildcardSubtype:
          type: boolean
          nullable: true
        wildcardType:
          type: boolean
          nullable: true
    MessageBodyWorkers:
      type: object
      nullable: true
    ParameterizedHeader:
      type: object
      nullable: true
      properties:
        parameters:
          type: object
          additionalProperties:
            type: string
            nullable: true
          nullable: true
        value:
          type: string
          nullable: true
    MultiPart:
      type: object
      nullable: true
      properties:
        bodyParts:
          type: array
          items:
            $ref: '#/components/schemas/BodyPart'
          nullable: true
        contentDisposition:
          $ref: '#/components/schemas/ContentDisposition'
        entity:
          type: object
          nullable: true
        headers:
          type: object
          additionalProperties:
            type: array
            items:
              type: string
              nullable: true
            nullable: true
          nullable: true
          properties:
            empty:
              type: boolean
              nullable: true
        mediaType:
          $ref: '#/components/schemas/MediaType'
        messageBodyWorkers:
          $ref: '#/components/schemas/MessageBodyWorkers'
        parameterizedHeaders:
          type: object
          additionalProperties:
            type: array
            items:
              $ref: '#/components/schemas/ParameterizedHeader'
            nullable: true
          nullable: true
          properties:
            empty:
              type: boolean
              nullable: true
        providers:
          $ref: '#/components/schemas/Providers'
    Providers:
      type: object
      nullable: true
    NewCookie:
      type: object
      nullable: true
      properties:
        comment:
          type: string
          nullable: true
        domain:
          type: string
          nullable: true
        expiry:
          type: string
          format: date-time
          nullable: true
        httpOnly:
          type: boolean
          nullable: true
        maxAge:
          type: integer
          format: int32
          nullable: true
        name:
          type: string
          nullable: true
        path:
          type: string
          nullable: true
        sameSite:
          $ref: '#/components/schemas/JakartaSameSiteEnum'
        secure:
          type: boolean
          nullable: true
        value:
          type: string
          nullable: true
        version:
          type: integer
          format: int32
          nullable: true
    EntityTag:
      type: object
      nullable: true
      properties:
        value:
          type: string
          nullable: true
        weak:
          type: boolean
          nullable: true
    Link:
      type: object
      nullable: true
      properties:
        params:
          type: object
          additionalProperties:
            type: string
            nullable: true
          nullable: true
        rel:
          type: string
          nullable: true
        rels:
          type: array
          items:
            type: string
            nullable: true
          nullable: true
        title:
          type: string
          nullable: true
        type:
          type: string
          nullable: true
        uri:
          type: string
          format: uri
          nullable: true
        uriBuilder:
          $ref: '#/components/schemas/UriBuilder'
    StatusType:
      type: object
      nullable: true
      properties:
        family:
          $ref: '#/components/schemas/JakartaFamilyEnum'
        reasonPhrase:
          type: string
          nullable: true
        statusCode:
          type: integer
          format: int32
          nullable: true
    FormDataContentDisposition:
      type: object
      properties:
        creationDate:
          type: string
          format: date-time
          nullable: true
        fileName:
          type: string
          nullable: true
        modificationDate:
          type: string
          format: date-time
          nullable: true
        name:
          type: string
          nullable: true
        parameters:
          type: object
          additionalProperties:
            type: string
            nullable: true
          nullable: true
        readDate:
          type: string
          format: date-time
          nullable: true
        size:
          type: integer
          format: int64
          nullable: true
        type:
          type: string
          nullable: true
    JakartaSameSiteEnum:
      type: string
      enum:
        - NONE
        - LAX
        - STRICT
    UriBuilder:
      type: object
      nullable: true
    JakartaFamilyEnum:
      type: string
      enum:
        - INFORMATIONAL
        - SUCCESSFUL
        - REDIRECTION
        - CLIENT_ERROR
        - SERVER_ERROR
        - OTHER
  securitySchemes:
    ApiKeyAuth:
      description: >-
        Your Rhombus API key. Must be accompanied by the `x-auth-scheme` header
        set to `api-token` (or `partner-api-token` for partner endpoints).
      in: header
      name: x-auth-apikey
      type: apiKey

````