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

# Export Dashboards (.ucf)

> Exports every dashboard flagged exportable in the organization — along with the charts they render and their filters and themes — as an encrypted .ucf file. Import the file into another environment with the import endpoint. Requires an Upsolve admin API key.



## OpenAPI

````yaml post /v1/api/ucf/dashboards/export
openapi: 3.1.0
info:
  title: Upsolve API
  version: 1.4.2
servers:
  - url: https://api.upsolve.ai
security: []
tags: []
paths:
  /v1/api/ucf/dashboards/export:
    post:
      summary: Export dashboards as an encrypted .ucf file
      description: >-
        Exports every dashboard flagged exportable in the organization — along
        with the charts they render and their filters and themes — as an
        encrypted .ucf file. Import the file into another environment with the
        import endpoint. Requires an Upsolve admin API key.
      operationId: PostV1ApiUcfDashboardsExport
      requestBody:
        description: POST /v1/api/ucf/dashboards/export Request body
        content:
          application/json:
            schema:
              type: object
              properties:
                apiKey:
                  type: string
                  minLength: 1
                  description: >-
                    Upsolve API key, generated under Account → Developer
                    settings in the Upsolve Hub. Keys are user-scoped: pass
                    organizationId alongside the key to select which org to act
                    on.
                  examples:
                    - up_embed_************
                organizationId:
                  type: string
                  format: uuid
                  pattern: >-
                    ^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12})$
            examples:
              example1:
                value:
                  apiKey: up_embed_************
      responses:
        '200':
          description: POST /v1/api/ucf/dashboards/export Positive response
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    externalDocs:
                      description: raw binary data
                      url: >-
                        https://swagger.io/specification/#working-with-binary-data
                  fileName:
                    type: string
                required:
                  - data
                  - fileName
                additionalProperties: false
        '400':
          description: POST /v1/api/ucf/dashboards/export Negative response
          content:
            text/plain:
              schema:
                type: string
      security:
        - APIKEY_1: []
components:
  securitySchemes:
    APIKEY_1:
      type: apiKey
      in: query
      name: apiKey
      x-in-actual: body
      description: apiKey MUST be supplied within the request body instead of query

````