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

# Get Customer Wishlist

> **Host**: http://qshop.ng



## OpenAPI

````yaml get /shops/{shopId}/customers/{userId}/wishlist
openapi: 3.1.0
info:
  title: OpenAPI Specification
  version: 1.0.0
  description: >-
    QShop storefront API.  This API is used to build a storefront for a QShop
    store
  contact:
    name: QShop
    url: https://qshop.ng
    email: hello@qshop.ng
servers:
  - url: http://staging.qshop.ng/apiv2
    description: Staging server
  - url: http://qshop.ng/api
    description: Production server
security: []
paths:
  /shops/{shopId}/customers/{userId}/wishlist:
    get:
      tags:
        - Wishlist
      summary: Get Customer Wishlist
      description: '**Host**: http://qshop.ng'
      parameters:
        - name: shopId
          in: path
          required: true
          schema:
            type: string
        - name: userId
          in: path
          required: true
          schema:
            type: string
        - name: page
          in: query
          required: false
          schema:
            type: string
        - name: limit
          in: query
          required: false
          schema:
            type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                type: object
                properties:
                  msg:
                    type: string
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        _id:
                          type: string
                        shop:
                          type: string
                        product:
                          type: object
                          properties:
                            reviews:
                              type: object
                              properties:
                                rates:
                                  type: object
                                  properties:
                                    '1':
                                      type: integer
                                    '2':
                                      type: integer
                                    '3':
                                      type: integer
                                    '4':
                                      type: integer
                                    '5':
                                      type: integer
                                  required:
                                    - '1'
                                    - '2'
                                    - '3'
                                    - '4'
                                    - '5'
                                count:
                                  type: integer
                              required:
                                - rates
                                - count
                            _id:
                              type: string
                            tags:
                              type: array
                              items:
                                type: string
                            additional_media:
                              type: array
                              items:
                                type: object
                                properties:
                                  media_type:
                                    type: string
                                  media:
                                    type: string
                                  uuid:
                                    type: string
                                  _id:
                                    type: string
                                required:
                                  - media_type
                                  - media
                                  - _id
                            attributes:
                              type: array
                              items:
                                type: object
                                properties:
                                  name:
                                    type: object
                                    properties:
                                      name:
                                        type: string
                                      _id:
                                        type: string
                                    required:
                                      - name
                                      - _id
                                  options:
                                    type: array
                                    items:
                                      type: object
                                      properties:
                                        name:
                                          type: string
                                        label:
                                          type: string
                                        id:
                                          type: string
                                      required:
                                        - name
                                        - label
                                        - id
                                required:
                                  - name
                                  - options
                            variants:
                              type: array
                            stock:
                              type: integer
                            digital:
                              type: boolean
                            media:
                              type: string
                            media_type:
                              type: string
                            name:
                              type: string
                            description:
                              type: string
                            price:
                              type: integer
                            shop:
                              type: string
                            created:
                              type: string
                            sale_price:
                              type: integer
                            archived:
                              type: boolean
                            __v:
                              type: integer
                            digital_download:
                              type: 'null'
                            draft:
                              type: boolean
                            numberOfPurchase:
                              type: integer
                            onSale:
                              type: boolean
                            slug:
                              type: string
                            alwaysInStock:
                              type: boolean
                            brand:
                              type: string
                            categories:
                              type: array
                            costPrice:
                              type:
                                - 'null'
                                - integer
                            isHero:
                              type: boolean
                            modified:
                              type: string
                            sku:
                              type: string
                            type:
                              type: string
                            typeAttributes:
                              type: object
                              properties:
                                packaging:
                                  type: object
                                  properties:
                                    weight:
                                      type: string
                                    length:
                                      type: string
                                    width:
                                      type: string
                                    height:
                                      type: string
                                  required:
                                    - weight
                                    - length
                                    - width
                                    - height
                              required:
                                - packaging
                            variantsInheritPrice:
                              type: boolean
                            dimension:
                              type: object
                              properties:
                                unit:
                                  type: string
                                length:
                                  type: integer
                                width:
                                  type: integer
                                height:
                                  type: integer
                              required:
                                - unit
                                - length
                                - width
                                - height
                            weight:
                              type: object
                              properties:
                                base:
                                  type: object
                                  properties:
                                    unit:
                                      type: string
                                    value:
                                      type: integer
                                  required:
                                    - unit
                                    - value
                                unit:
                                  type: string
                                value:
                                  type: integer
                              required:
                                - base
                                - unit
                                - value
                            setAttributesForVariants:
                              type: boolean
                          required:
                            - reviews
                            - _id
                            - tags
                            - additional_media
                            - attributes
                            - variants
                            - stock
                            - digital
                            - media
                            - media_type
                            - name
                            - description
                            - price
                            - shop
                            - created
                            - sale_price
                            - archived
                            - __v
                            - digital_download
                            - draft
                            - numberOfPurchase
                            - onSale
                            - slug
                            - alwaysInStock
                            - categories
                            - costPrice
                            - isHero
                            - type
                            - variantsInheritPrice
                            - setAttributesForVariants
                        user:
                          type: object
                          properties:
                            _id:
                              type: string
                            telephone:
                              type: string
                          required:
                            - _id
                            - telephone
                        profile:
                          type: object
                          properties:
                            campaigns:
                              type: array
                            _id:
                              type: string
                            shop:
                              type: string
                            user:
                              type: string
                            __v:
                              type: integer
                            acceptanceToken:
                              type: 'null'
                            created_at:
                              type: string
                            email:
                              type: string
                            fullName:
                              type: string
                            isClaimed:
                              type: boolean
                            notes:
                              type: array
                            notifyViaWhatsApp:
                              type: boolean
                            numberOfOrders:
                              type: integer
                            orderTotal:
                              type: integer
                            password:
                              type: string
                            resetPassword:
                              type: boolean
                            roles:
                              type: array
                              items:
                                type: string
                            suspended:
                              type: boolean
                            suspendedRoles:
                              type: array
                            telephone:
                              type: string
                            updated_at:
                              type: string
                            whatsAppNumber:
                              type: string
                          required:
                            - campaigns
                            - _id
                            - shop
                            - user
                            - __v
                            - acceptanceToken
                            - created_at
                            - email
                            - fullName
                            - isClaimed
                            - notes
                            - notifyViaWhatsApp
                            - numberOfOrders
                            - orderTotal
                            - password
                            - resetPassword
                            - roles
                            - suspended
                            - suspendedRoles
                            - telephone
                            - updated_at
                            - whatsAppNumber
                        created:
                          type: string
                        __v:
                          type: integer
                        variant:
                          type: 'null'
                      required:
                        - _id
                        - shop
                        - product
                        - user
                        - profile
                        - created
                        - __v
                        - variant
                  success:
                    type: boolean
                required:
                  - msg
                  - data
                  - success
          description: ''

````