> ## 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.

# Lookup manifest by taxonomy ID

> Scans a manifest QR code (TYPE 27) and returns the manifest with items for receiving.



## OpenAPI

````yaml api-reference/v1/openapi.yaml get /v1/receiving/manifest/{taxonomyId}
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/receiving/manifest/{taxonomyId}:
    get:
      tags:
        - Partner Receiving
      summary: Lookup manifest by taxonomy ID
      description: >-
        Scans a manifest QR code (TYPE 27) and returns the manifest with items
        for receiving.
      parameters:
        - schema:
            type: string
            minLength: 18
            maxLength: 18
            description: Manifest taxonomy ID (18 digits)
            example: 12600001000010068
          required: true
          name: taxonomyId
          in: path
      responses:
        '200':
          description: Manifest found
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  manifest:
                    type: object
                    properties:
                      id:
                        type: string
                        format: uuid
                      taxonomy_id:
                        type: string
                        nullable: true
                      manifest_number:
                        type: integer
                      partner_brand_id:
                        type: string
                        format: uuid
                      partner_name:
                        type: string
                      status:
                        type: string
                      expected_delivery_date:
                        type: string
                        nullable: true
                      tracking_number:
                        type: string
                        nullable: true
                      carrier:
                        type: string
                        nullable: true
                      total_items:
                        type: integer
                      total_expected_quantity:
                        type: integer
                      total_received_quantity:
                        type: integer
                      items:
                        type: array
                        items:
                          type: object
                          properties:
                            id:
                              type: string
                              format: uuid
                            scraped_product_id:
                              type: string
                              format: uuid
                            sellable_product_id:
                              type: string
                              nullable: true
                              format: uuid
                            product_name:
                              type: string
                            product_image:
                              type: string
                              nullable: true
                            barcode:
                              type: string
                              nullable: true
                            expected_quantity:
                              type: integer
                            received_quantity:
                              type: integer
                            lot_number:
                              type: string
                              nullable: true
                            expiration_date:
                              type: string
                              nullable: true
                          required:
                            - id
                            - scraped_product_id
                            - sellable_product_id
                            - product_name
                            - product_image
                            - barcode
                            - expected_quantity
                            - received_quantity
                            - lot_number
                            - expiration_date
                    required:
                      - id
                      - taxonomy_id
                      - manifest_number
                      - partner_brand_id
                      - partner_name
                      - status
                      - expected_delivery_date
                      - tracking_number
                      - carrier
                      - total_items
                      - total_expected_quantity
                      - total_received_quantity
                      - items
                required:
                  - success
                  - manifest
        '400':
          description: Invalid taxonomy ID
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                required:
                  - error
        '404':
          description: Manifest not found
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                required:
                  - error
        '500':
          description: Server error
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                required:
                  - error

````