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

# Upload Trust Center favicon

> Uploads a favicon for a Trust Center. The Trust Center must have a custom
domain configured.



## OpenAPI

````yaml /reference/manage-vanta.json post /trust-centers/{slugId}/favicon
openapi: 3.0.0
info:
  title: Manage Vanta
  version: 1.0.0
  description: >-
    The REST API lets customers query and mutate Vanta's data. Use this API to
    automate bulk actions, query data for custom workflows and dashboards, and
    bolster your security operations


    **Note for Vanta Gov (FedRAMP) customers:** Select `Vanta Gov (FedRAMP)`
    from the server dropdown to issue requests against
    `https://api.vanta-gov.com`. The OAuth token URL shown below defaults to the
    commercial host — replace it with `https://api.vanta-gov.com/oauth/token`.
  termsOfService: https://www.vanta.com/terms
  license:
    name: UNLICENSED
  contact:
    name: API Support
    url: https://help.vanta.com/
    email: support@vanta.com
servers:
  - url: https://api.vanta.com/v1
    description: Vanta (Commercial)
  - url: https://api.vanta-gov.com/v1
    description: Vanta Gov (FedRAMP)
security: []
paths:
  /trust-centers/{slugId}/favicon:
    post:
      tags:
        - Trust Centers
      summary: Upload Trust Center favicon
      description: >-
        Uploads a favicon for a Trust Center. The Trust Center must have a
        custom

        domain configured.
      operationId: UploadTrustCenterFavicon
      parameters:
        - in: path
          name: slugId
          required: true
          schema:
            type: string
      requestBody:
        required: true
        content:
          multipart/form-data:
            schema:
              type: object
              properties:
                favicon:
                  type: string
                  format: binary
              required:
                - favicon
      responses:
        '200':
          description: Ok
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UploadFaviconResponse'
              examples:
                Example 1:
                  value:
                    isSuccessful: true
      security:
        - bearerAuth: []
components:
  schemas:
    UploadFaviconResponse:
      description: Response returned after a favicon upload.
      properties:
        isSuccessful:
          type: boolean
          description: Whether the favicon was successfully uploaded.
      required:
        - isSuccessful
      type: object
      additionalProperties: false
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````