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

# Update fulfillment order (pickability status, shipping service group, terms of trade)



## OpenAPI

````yaml /openapi.json patch /orders/fulfillmentOrders/{fulfillmentOrderId}
openapi: 3.0.1
info:
  title: Connector
  version: '1.0'
  description: Enhanced Quivo API documentation with additional descriptions and examples
  contact:
    name: Quivo Support
    email: support@quivo.co
    url: https://quivo.co
  license:
    name: Proprietary
    url: https://quivo.co/terms
  termsOfService: https://quivo.co/terms
servers:
  - url: https://api.quivo.co/
    description: Production API server for Quivo Connector
security: []
tags:
  - name: addresses
    description: Manage stored addresses in the seller's address book
  - name: apiKeyRequests
    description: Request and manage API keys
  - name: articles
    description: Create and manage product articles
  - name: audits
    description: Access audit logs and history
  - name: auth
    description: Manage product bundles
  - name: bundles
    description: Get carrier information
  - name: carriers
    description: Manage contact information
  - name: contacts
    description: Get country information
  - name: countries
    description: Get currency information
  - name: currencies
    description: Manage customer inquiries
  - name: customerInquiries
    description: Access dashboard data
  - name: dashboards
    description: Manage file uploads and downloads
  - name: files
    description: Manage fulfillment plans
  - name: fulfillmentPlans
    description: Manage inbound shipments
  - name: inbounds
    description: Monitor and manage inventory items
  - name: invoices
    description: Get language information
  - name: items
    description: Manage notifications
  - name: languages
    description: Create and manage fulfillment orders
  - name: notifications
    description: Health check endpoint
  - name: orders
    description: Manage return applications
  - name: ping
    description: Manage return links
  - name: returnApp
    description: Manage returns
  - name: returnLinks
    description: Get seller information
  - name: returns
    description: Book and manage shipments
  - name: sellers
    description: Get shipping service groups
  - name: shipments
    description: Manage shop orders
  - name: shippingServiceGroups
    description: Manage shops
  - name: shopOrders
    description: Get system status
  - name: shops
    description: Manage stored addresses
  - name: status
    description: Manage subscription packages
  - name: storedAddresses
    description: Manage webhook subscriptions
  - name: subscriptionPackages
    description: Track shipments
  - name: subscriptions
    description: Manage transport services
  - name: track
    description: Manage users
  - name: transports
    description: Get warehouse information
  - name: users
  - name: warehouses
  - name: zendesk
paths:
  /orders/fulfillmentOrders/{fulfillmentOrderId}:
    patch:
      tags:
        - orders
      summary: >-
        Update fulfillment order (pickability status, shipping service group,
        terms of trade)
      operationId: fulfillmentOrderPatch
      parameters:
        - name: fulfillmentOrderId
          in: path
          required: true
          schema:
            type: integer
            format: int64
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/FulfillmentOrderPatch'
        required: false
      responses:
        default:
          description: successful operation
          content: {}
components:
  schemas:
    FulfillmentOrderPatch:
      type: object
      properties:
        pickabilityStatus:
          maxLength: 50
          minLength: 0
          type: string
          example: Pickable
          enum:
            - Pickable
            - Replenishable
            - Out of Stock
        shippingServiceGroupId:
          type: integer
          description: Id of the shipping service group to assign to this fulfillment order
          format: int64
          example: 42
        termsOfTrade:
          type: string
          description: Terms of trade to assign to this fulfillment order
          example: DAP
          enum:
            - DAP
            - DDP
        rebalancingClientResponse:
          type: string
          description: >-
            The client's answer to a needs-input rebalancing state:
            SHIP_AVAILABLE reduces the fulfillment order to the available
            quantities, SPLIT additionally carries the missing quantities into a
            new fulfillment order, WAIT returns the picked items to the shelf
            and re-creates the fulfillment order whole. Only accepted while the
            fulfillment order is in CLIENT_INPUT_REQUIRED
          example: WAIT
          enum:
            - WAIT
            - SHIP_AVAILABLE
            - SPLIT

````