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

# Get Collection Mappings



## OpenAPI

````yaml /api-reference/openapi/lite.json get /multi-store/collection-mappings/{group_id}
openapi: 3.1.0
info:
  title: Depict Lite API
  version: 1.0.0
  description: >-
    REST API behind Depict Lite, the native Shopify app: onboarding,
    collections, boost & bury, dashboards, A/B testing and multi-store
    management. Endpoints are served under the /api/lite prefix and require an
    Auth0-issued bearer token.
servers:
  - url: /api/lite
security: []
paths:
  /multi-store/collection-mappings/{group_id}:
    get:
      tags:
        - multi-store
      summary: Get Collection Mappings
      operationId: get_collection_mappings_multi_store_collection_mappings__group_id__get
      parameters:
        - name: group_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: Group Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/LiteMultiStoreCollectionResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - Auth0: []
components:
  schemas:
    LiteMultiStoreCollectionResponse:
      properties:
        connections:
          items:
            $ref: '#/components/schemas/LiteMultiStoreCollectionMappings'
          type: array
          title: Connections
        collections:
          items:
            $ref: '#/components/schemas/LiteMultiStoreCollection'
          type: array
          title: Collections
      type: object
      required:
        - connections
        - collections
      title: LiteMultiStoreCollectionResponse
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    LiteMultiStoreCollectionMappings:
      properties:
        group_collection_id:
          type: string
          title: Group Collection Id
        collections:
          items:
            $ref: '#/components/schemas/LiteMultiStoreCollectionMapping'
          type: array
          title: Collections
      type: object
      required:
        - group_collection_id
        - collections
      title: LiteMultiStoreCollectionMappings
    LiteMultiStoreCollection:
      properties:
        merchant_id:
          type: string
          title: Merchant Id
        collection_id:
          type: string
          title: Collection Id
        title:
          type: string
          title: Title
        handle:
          type: string
          title: Handle
        image_urls:
          items:
            type: string
          type: array
          title: Image Urls
      type: object
      required:
        - merchant_id
        - collection_id
        - title
        - handle
        - image_urls
      title: LiteMultiStoreCollection
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
    LiteMultiStoreCollectionMapping:
      properties:
        merchant_id:
          type: string
          title: Merchant Id
        collection_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Collection Id
        suggested_collection_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Suggested Collection Id
      type: object
      required:
        - merchant_id
        - collection_id
        - suggested_collection_id
      title: LiteMultiStoreCollectionMapping
  securitySchemes:
    Auth0:
      type: oauth2
      flows:
        authorizationCode:
          scopes:
            openid: OpenID Connect
            profile: User profile
            email: User email
          authorizationUrl: https://depict.eu.auth0.com/oauth/authorize
          tokenUrl: https://depict.eu.auth0.com/oauth/token
      x-tokenName: id_token

````