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

# Get partner product detail

> Returns detailed information about a partner product including inventory and sales data.



## OpenAPI

````yaml api-reference/v1/openapi.yaml get /v1/admin/partners/products/{id}
openapi: 3.1.0
info:
  title: Goods API
  version: 1.0.0
  description: >-
    API for Goods grocery operations - scanner app, admin dashboard, and
    customer features
  contact:
    name: Goods Team
    url: https://goods.app
servers:
  - url: http://localhost:3000
    description: Local development
  - url: https://dev.api.switchyard.run
    description: Development
  - url: https://api.switchyard.run
    description: Production
security: []
tags:
  - name: v1
    description: API v1 - unified domain-based endpoints
  - name: Scanner
    description: Scanner app endpoints for drivers and pickers
  - name: Sweeps
    description: Sweep management - retail store pickup operations
  - name: RFC Picks
    description: Ready-for-checkout picking operations
  - name: Inventory
    description: Inventory management and barcode lookup
  - name: Admin
    description: Admin dashboard endpoints
  - name: Orders
    description: Order management
  - name: Products
    description: Product catalog management
  - name: Notifications
    description: Push, email, SMS, and Slack notification management
paths:
  /v1/admin/partners/products/{id}:
    get:
      tags:
        - Admin - Partner Products
      summary: Get partner product detail
      description: >-
        Returns detailed information about a partner product including inventory
        and sales data.
      parameters:
        - schema:
            type: string
            format: uuid
          required: true
          name: id
          in: path
      responses:
        '200':
          description: Product detail with inventory and sales
          content:
            application/json:
              schema:
                type: object
                properties:
                  product:
                    type: object
                    properties:
                      id:
                        type: string
                        format: uuid
                      scraped_product_id:
                        type: string
                        format: uuid
                      name:
                        type: string
                      brand:
                        type: string
                        nullable: true
                      description:
                        type: string
                        nullable: true
                      barcode:
                        type: string
                        nullable: true
                      size:
                        type: string
                        nullable: true
                      image_url:
                        type: string
                        nullable: true
                      selling_price:
                        type: number
                      temperature_zone:
                        type: string
                      is_active:
                        type: boolean
                      commission_rate:
                        type: number
                        nullable: true
                      partner_wholesale_price:
                        type: number
                        nullable: true
                      partner_pricing_model:
                        type: string
                      category_id:
                        type: string
                        nullable: true
                        format: uuid
                      subcategory_id:
                        type: string
                        nullable: true
                        format: uuid
                      created_at:
                        type: string
                        format: date-time
                      partner_brand:
                        type: object
                        properties:
                          id:
                            type: string
                            format: uuid
                          company_name:
                            type: string
                          company_logo_url:
                            type: string
                            nullable: true
                          default_commission_rate_ambient:
                            type: number
                          default_commission_rate_cold:
                            type: number
                        required:
                          - id
                          - company_name
                          - company_logo_url
                          - default_commission_rate_ambient
                          - default_commission_rate_cold
                    required:
                      - id
                      - scraped_product_id
                      - name
                      - brand
                      - description
                      - barcode
                      - size
                      - image_url
                      - selling_price
                      - temperature_zone
                      - is_active
                      - commission_rate
                      - partner_wholesale_price
                      - partner_pricing_model
                      - category_id
                      - subcategory_id
                      - created_at
                      - partner_brand
                  inventory:
                    type: object
                    properties:
                      total_quantity:
                        type: number
                      reserved_quantity:
                        type: number
                      available_quantity:
                        type: number
                      items:
                        type: array
                        items:
                          type: object
                          properties:
                            id:
                              type: string
                              format: uuid
                            quantity:
                              type: number
                            reserved_quantity:
                              type: number
                            lot_number:
                              type: string
                              nullable: true
                            expiration_date:
                              type: string
                              nullable: true
                            received_at:
                              type: string
                              format: date-time
                          required:
                            - id
                            - quantity
                            - reserved_quantity
                            - lot_number
                            - expiration_date
                            - received_at
                    required:
                      - total_quantity
                      - reserved_quantity
                      - available_quantity
                      - items
                  sales:
                    type: object
                    properties:
                      total_units_sold:
                        type: number
                      total_revenue:
                        type: number
                      total_commission:
                        type: number
                      total_net_to_partner:
                        type: number
                      recent_sales:
                        type: array
                        items:
                          type: object
                          properties:
                            id:
                              type: string
                              format: uuid
                            quantity_sold:
                              type: number
                            sale_price:
                              type: number
                            commission_amount:
                              type: number
                            net_to_partner:
                              type: number
                            sold_at:
                              type: string
                              format: date-time
                          required:
                            - id
                            - quantity_sold
                            - sale_price
                            - commission_amount
                            - net_to_partner
                            - sold_at
                    required:
                      - total_units_sold
                      - total_revenue
                      - total_commission
                      - total_net_to_partner
                      - recent_sales
                required:
                  - product
                  - inventory
                  - sales
        '404':
          description: Product not found
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                  message:
                    type: string
                required:
                  - error
        '500':
          description: Server error
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                  message:
                    type: string
                required:
                  - error

````