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

# Receive a manifest item

> Marks a manifest item as received, creates consignment inventory.



## OpenAPI

````yaml api-reference/v1/openapi.yaml post /v1/receiving/manifest/{manifestId}/items/{itemId}/receive
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/{manifestId}/items/{itemId}/receive:
    post:
      tags:
        - Partner Receiving
      summary: Receive a manifest item
      description: Marks a manifest item as received, creates consignment inventory.
      parameters:
        - schema:
            type: string
            format: uuid
            description: Manifest UUID
          required: true
          name: manifestId
          in: path
        - schema:
            type: string
            format: uuid
            description: Manifest item UUID
          required: true
          name: itemId
          in: path
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                quantity:
                  type: integer
                  minimum: 0
                  exclusiveMinimum: true
                  description: Quantity to receive. Defaults to 1.
                cart_id:
                  type: string
                  description: Stocking cart taxonomy ID to place item in
      responses:
        '200':
          description: Item received successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  item:
                    type: object
                    properties:
                      id:
                        type: string
                        format: uuid
                      received_quantity:
                        type: integer
                      expected_quantity:
                        type: integer
                      fully_received:
                        type: boolean
                    required:
                      - id
                      - received_quantity
                      - expected_quantity
                      - fully_received
                  manifest:
                    type: object
                    properties:
                      id:
                        type: string
                        format: uuid
                      status:
                        type: string
                      fully_received:
                        type: boolean
                      total_expected_quantity:
                        type: integer
                      total_received_quantity:
                        type: integer
                    required:
                      - id
                      - status
                      - fully_received
                      - total_expected_quantity
                      - total_received_quantity
                  assigned_cart:
                    type: object
                    properties:
                      id:
                        type: string
                      label:
                        type: string
                      display_id:
                        type: string
                    required:
                      - id
                      - label
                      - display_id
                required:
                  - success
                  - item
                  - manifest
        '400':
          description: Invalid request or item already fully received
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                required:
                  - error
        '404':
          description: Manifest or item 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

````