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

# List order items to fulfill

> Retrieve all order items for your offers that need fulfillment. Each item represents a single offer ordered by a reseller.



## OpenAPI

````yaml /openapi/openapi-provider.json get /provider/orders
openapi: 3.0.0
info:
  title: OfferGrid API
  description: >-
    **Provider API** - Create and manage service offerings, fulfill orders from
    resellers.


    As a provider, you can:

    - Create and publish service offerings (internet, electricity)

    - Control which resellers can access your offers (all, preferred, or
    selected)

    - View and manage orders from resellers

    - Update order fulfillment status and schedule installations

    - Track order lifecycle from pending to completion
  version: '1.0'
  contact: {}
servers:
  - url: https://api.offergrid.io
    description: Production
  - url: http://localhost:3000
    description: Local development
security: []
tags:
  - name: provider-offers
    description: 'Provider: Manage your service offerings'
  - name: provider-orders
    description: 'Provider: Fulfill orders from resellers'
paths:
  /provider/orders:
    get:
      tags:
        - provider-orders
      summary: List order items to fulfill
      description: >-
        Retrieve all order items for your offers that need fulfillment. Each
        item represents a single offer ordered by a reseller.
      operationId: ProviderOrdersController_findAll
      parameters:
        - name: status
          required: false
          in: query
          description: Filter by order item status
          schema:
            enum:
              - pending
              - submitted_to_provider
              - accepted
              - rejected
              - scheduled
              - in_progress
              - completed
              - active
              - cancelled
              - failed
            type: string
      responses:
        '200':
          description: List of order items
      security:
        - api-key: []
components:
  securitySchemes:
    api-key:
      type: apiKey
      in: header
      name: x-api-key
      description: >-
        Team API key for authentication. Your team role
        (provider/reseller/hybrid) determines which endpoints you can access.

````