> ## 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 bag by ID

> Get detailed information about a specific bag including items



## OpenAPI

````yaml api-reference/v1/openapi.yaml get /v1/equipment/bags/{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/equipment/bags/{id}:
    get:
      tags:
        - Equipment
      summary: Get bag by ID
      description: Get detailed information about a specific bag including items
      parameters:
        - schema:
            type: string
            description: Bag ID (UUID or taxonomy ID)
          required: true
          name: id
          in: path
      responses:
        '200':
          description: Bag details
          content:
            application/json:
              schema:
                type: object
                properties:
                  bag:
                    type: object
                    properties:
                      id:
                        type: string
                        format: uuid
                      bag_code:
                        type: string
                      display_id:
                        type: string
                      label:
                        type: string
                      bag_type:
                        type: string
                      status:
                        type: string
                      label_printed:
                        type: boolean
                      fulfilled:
                        type: boolean
                      order_id:
                        type: string
                        nullable: true
                        format: uuid
                      order:
                        type: object
                        nullable: true
                        properties:
                          id:
                            type: string
                            format: uuid
                          order_number:
                            type: string
                          display_id:
                            type: number
                          customer_name:
                            type: string
                        required:
                          - id
                          - order_number
                          - display_id
                          - customer_name
                      slot_id:
                        type: string
                        nullable: true
                      slot:
                        type: object
                        nullable: true
                        properties:
                          id:
                            type: string
                          name:
                            type: string
                          equipment_type:
                            type: string
                          display_location:
                            type: string
                        required:
                          - id
                          - name
                          - equipment_type
                          - display_location
                      tote_id:
                        type: string
                        nullable: true
                        description: 18-digit taxonomy ID
                        example: '011000001000020053'
                      tote:
                        type: object
                        nullable: true
                        properties:
                          id:
                            type: string
                            description: 18-digit taxonomy ID
                            example: '011000001000020053'
                          display_id:
                            type: string
                          label:
                            type: string
                        required:
                          - id
                          - display_id
                          - label
                      items:
                        type: array
                        items:
                          type: object
                          properties:
                            id:
                              type: string
                              format: uuid
                            product_name:
                              type: string
                            quantity:
                              type: number
                            upc:
                              type: string
                              nullable: true
                            temperature_zone:
                              type: string
                              nullable: true
                          required:
                            - id
                            - product_name
                            - quantity
                            - upc
                            - temperature_zone
                      item_count:
                        type: number
                      created_at:
                        type: string
                        format: date-time
                      updated_at:
                        type: string
                        format: date-time
                    required:
                      - id
                      - bag_code
                      - display_id
                      - label
                      - bag_type
                      - status
                      - label_printed
                      - fulfilled
                      - order_id
                      - order
                      - slot_id
                      - slot
                      - tote_id
                      - tote
                      - items
                      - item_count
                      - created_at
                      - updated_at
                required:
                  - bag
        '404':
          description: Bag not found
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                    description: Error message
                    example: Not found
                required:
                  - error

````