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

# Create dashboards

> Create a new dashboard configuration.



## OpenAPI

````yaml /openapi.json post /dashboards
openapi: 3.0.1
info:
  title: Connector
  version: 80f7edc, 2026-01-23T12:01:00Z
  description: Enhanced Quivo API documentation with additional descriptions and examples
  contact:
    name: Quivo Support
    email: support@quivo.co
    url: https://quivo.co
  license:
    name: Proprietary
    url: https://quivo.co/terms
  termsOfService: https://quivo.co/terms
servers:
  - url: https://api.quivo.co/
    description: Production API server for Quivo Connector
security: []
tags:
  - name: addresses
    description: Manage stored addresses in the seller's address book
  - name: apiKeyRequests
    description: Request and manage API keys
  - name: articles
    description: Create and manage product articles
  - name: audits
    description: Access audit logs and history
  - name: bundles
    description: Manage product bundles
  - name: carriers
    description: Get carrier information
  - name: contacts
    description: Manage contact information
  - name: countries
    description: Get country information
  - name: currencies
    description: Get currency information
  - name: customerInquiries
    description: Manage customer inquiries
  - name: dashboards
    description: Access dashboard data
  - name: files
    description: Manage file uploads and downloads
  - name: fulfillmentPlans
    description: Manage fulfillment plans
  - name: inbounds
    description: Manage inbound shipments
  - name: items
    description: Monitor and manage inventory items
  - name: languages
    description: Get language information
  - name: notifications
    description: Manage notifications
  - name: orders
    description: Create and manage fulfillment orders
  - name: ping
    description: Health check endpoint
  - name: returnApp
    description: Manage return applications
  - name: returnLinks
    description: Manage return links
  - name: returns
    description: Manage returns
  - name: sellers
    description: Get seller information
  - name: shipments
    description: Book and manage shipments
  - name: shippingServiceGroups
    description: Get shipping service groups
  - name: shopOrders
    description: Manage shop orders
  - name: shops
    description: Manage shops
  - name: status
    description: Get system status
  - name: storedAddresses
    description: Manage stored addresses
  - name: subscriptionPackages
    description: Manage subscription packages
  - name: subscriptions
    description: Manage webhook subscriptions
  - name: track
    description: Track shipments
  - name: transports
    description: Manage transport services
  - name: users
    description: Manage users
  - name: warehouses
    description: Get warehouse information
paths:
  /dashboards:
    post:
      tags:
        - dashboards
      summary: Create dashboards
      description: Create a new dashboard configuration.
      operationId: dashboardPost
      parameters:
        - name: sellerId
          in: query
          schema:
            type: integer
            format: int64
          description: >-
            The unique identifier for the seller account. This ID is used to
            scope operations to a specific seller's data and resources.
        - name: warehouse
          in: query
          schema:
            type: string
          description: The identifier or name of the warehouse to filter by.
        - name: range
          in: query
          schema:
            type: string
          description: The time range for the dashboard data (e.g., "7d", "30d", "1y").
        - name: rangeStart
          in: query
          schema:
            type: string
          description: 'The start date for the dashboard data range. Format: ISO 8601 date.'
        - name: rangeEnd
          in: query
          schema:
            type: string
          description: 'The end date for the dashboard data range. Format: ISO 8601 date.'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/DashboardPost'
        required: false
        description: Data to create a new resource at /dashboards
      responses:
        '200':
          description: >-
            Returns the newly created dashboard configuration with assigned
            identifier.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Response'
        '400':
          description: >-
            Bad request - the request payload is invalid, missing required
            fields, or contains invalid data.
        '401':
          description: >-
            Unauthorized - authentication credentials are missing, invalid, or
            expired.
        '404':
          description: >-
            Not found - the requested resource does not exist or is not
            accessible.
        '500':
          description: Internal server error - an unexpected error occurred on the server.
components:
  schemas:
    DashboardPost:
      type: object
      properties:
        graphs:
          uniqueItems: true
          type: array
          items:
            type: string
          description: Array of graph items
      description: >-
        Request payload for creating a new dashboard configuration. Contains
        dashboard settings, data range, warehouse filters, and visualization
        preferences.
    Response:
      type: object
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/Data'
          description: Array of data items
        errors:
          type: array
          items:
            $ref: '#/components/schemas/Error'
          description: Error information
      description: >-
        Generic response object. Contains status information and optional data
        payload.
    Data:
      type: object
      properties:
        slug:
          type: string
          description: The slug value
        data:
          type: array
          items:
            type: string
          description: Array of data items
        labels:
          type: array
          items:
            type: string
          description: Array of label items
      description: 'The '
    Error:
      type: object
      properties:
        graph:
          type: string
          description: The graph value
        reason:
          type: string
          description: The reason value
      description: Error response structure

````