> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://developer-stage.shipbob.dev/llms.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://developer-stage.shipbob.dev/_mcp/server.

# Get Multiple Warehouse Receiving Orders


GET https://sandbox-api.shipbob.com/2026-01/receiving

Returns a list of warehouse receiving orders with optional filtering by status, fulfillment center, purchase order number, and date range.


Reference: https://developer-stage.shipbob.dev/api/receiving/get-multiple-warehouse-receiving-orders

## OpenAPI Specification

```yaml
openapi: 3.1.0
info:
  title: api-2026-01
  version: 1.0.0
paths:
  /2026-01/receiving:
    get:
      operationId: get-multiple-warehouse-receiving-orders
      summary: |
        Get Multiple Warehouse Receiving Orders
      description: >
        Returns a list of warehouse receiving orders with optional filtering by
        status, fulfillment center, purchase order number, and date range.
      tags:
        - subpackage_receiving
      parameters:
        - name: Page
          in: query
          description: |
            Page of WROs to get
          required: false
          schema:
            $ref: '#/components/schemas/Receiving.Get.2.0.Receiving.Page.Integer'
        - name: Limit
          in: query
          description: |
            Number of WROs per page to request
          required: false
          schema:
            $ref: '#/components/schemas/Receiving.Get.2.0.Receiving.Limit.Integer'
        - name: IDs
          in: query
          description: |
            Comma separated list of WRO IDs to filter by
          required: false
          schema:
            $ref: '#/components/schemas/Receiving.Get.2.0.Receiving.IDs.IntegerArray'
        - name: Statuses
          in: query
          description: |
            Comma separated list of WRO statuses to filter by
          required: false
          schema:
            $ref: '#/components/schemas/Receiving.ReceivingStatusArray'
        - name: InsertStartDate
          in: query
          description: |
            Earliest date that a WRO was created
          required: false
          schema:
            $ref: >-
              #/components/schemas/Receiving.Get.2.0.Receiving.InsertStartDate.String
        - name: InsertEndDate
          in: query
          description: |
            Latest date that a WRO was created
          required: false
          schema:
            $ref: >-
              #/components/schemas/Receiving.Get.2.0.Receiving.InsertEndDate.String
        - name: FulfillmentCenterIds
          in: query
          description: |
            Comma separated list of WRO fulfillment center IDs to filter by
          required: false
          schema:
            $ref: >-
              #/components/schemas/Receiving.Get.2.0.Receiving.FulfillmentCenterIds.IntegerArray
        - name: PurchaseOrderNumbers
          in: query
          description: |
            Comma separated list of WRO PO numbers to filter by
          required: false
          schema:
            $ref: >-
              #/components/schemas/Receiving.Get.2.0.Receiving.PurchaseOrderNumbers.StringArray
        - name: ExternalSync
          in: query
          description: |
            Flag to return external_sync_timestamp WROs
          required: false
          schema:
            $ref: >-
              #/components/schemas/Receiving.Get.2.0.Receiving.ExternalSync.Boolean
        - name: CompletedStartDate
          in: query
          description: |
            Earliest date that a WRO was completed
          required: false
          schema:
            $ref: >-
              #/components/schemas/Receiving.Get.2.0.Receiving.CompletedStartDate.String
        - name: CompletedEndDate
          in: query
          description: |
            Latest date that a WRO was completed
          required: false
          schema:
            $ref: >-
              #/components/schemas/Receiving.Get.2.0.Receiving.CompletedEndDate.String
        - name: Authorization
          in: header
          description: Authentication using Personal Access Token (PAT) token
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/Receiving.V2.WarehouseReceivingOrderViewModelArray
        '401':
          description: Authorization missing or invalid
          content:
            application/json:
              schema:
                description: Any type
        '403':
          description: The provided credentials are not authorized to access this resource
          content:
            application/json:
              schema:
                description: Any type
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/Receiving.Get.2.0.Receiving.Not.Found.OneOf.ValidationProblemDetails
servers:
  - url: https://sandbox-api.shipbob.com
    description: https://sandbox-api.shipbob.com
components:
  schemas:
    Receiving.Get.2.0.Receiving.Page.Integer:
      type: integer
      title: Receiving.Get.2.0.Receiving.Page.Integer
    Receiving.Get.2.0.Receiving.Limit.Integer:
      type: integer
      title: Receiving.Get.2.0.Receiving.Limit.Integer
    Receiving.Get.2.0.Receiving.IDs.IntegerArray:
      type: array
      items:
        type: integer
      title: Receiving.Get.2.0.Receiving.IDs.IntegerArray
    Receiving.ReceivingStatus:
      type: string
      enum:
        - Awaiting
        - Processing
        - Completed
        - Cancelled
        - Incomplete
        - Arrived
        - PartiallyArrived
        - PartiallyArrivedAtHub
        - ArrivedAtHub
        - ProcessingAtHub
        - InternalTransfer
      title: Receiving.ReceivingStatus
    Receiving.ReceivingStatusArray:
      type: array
      items:
        $ref: '#/components/schemas/Receiving.ReceivingStatus'
      title: Receiving.ReceivingStatusArray
    Receiving.Get.2.0.Receiving.InsertStartDate.String:
      type: string
      format: date-time
      title: Receiving.Get.2.0.Receiving.InsertStartDate.String
    Receiving.Get.2.0.Receiving.InsertEndDate.String:
      type: string
      format: date-time
      title: Receiving.Get.2.0.Receiving.InsertEndDate.String
    Receiving.Get.2.0.Receiving.FulfillmentCenterIds.IntegerArray:
      type: array
      items:
        type: integer
      title: Receiving.Get.2.0.Receiving.FulfillmentCenterIds.IntegerArray
    Receiving.Get.2.0.Receiving.PurchaseOrderNumbers.StringArray:
      type: array
      items:
        type: string
      title: Receiving.Get.2.0.Receiving.PurchaseOrderNumbers.StringArray
    Receiving.Get.2.0.Receiving.ExternalSync.Boolean:
      type: boolean
      title: Receiving.Get.2.0.Receiving.ExternalSync.Boolean
    Receiving.Get.2.0.Receiving.CompletedStartDate.String:
      type: string
      format: date-time
      title: Receiving.Get.2.0.Receiving.CompletedStartDate.String
    Receiving.Get.2.0.Receiving.CompletedEndDate.String:
      type: string
      format: date-time
      title: Receiving.Get.2.0.Receiving.CompletedEndDate.String
    Receiving.PackingType:
      type: string
      enum:
        - EverythingInOneBox
        - OneSkuPerBox
        - MultipleSkuPerBox
      title: Receiving.PackingType
    Receiving.FulfillmentCenterViewModel:
      type: object
      properties:
        address1:
          type: string
          description: Address line one of the fulfillment center
        address2:
          type: string
          description: Address line two of the fulfillment center
        city:
          type: string
          description: City the fulfillment center is located in
        country:
          type: string
          description: Country the fulfillment center is located in
        email:
          type: string
          description: Email contact for the fulfillment center
        id:
          type: integer
          description: Unique identifier of the fulfillment center
        name:
          type: string
          description: Name of the fulfillment center
        phone_number:
          type: string
          description: Phone number contact for the fulfillment center
        state:
          type: string
          description: State the fulfillment center is located in
        timezone:
          type: string
          description: Timezone the fulfillment center is located in
        zip_code:
          type: string
          description: Postal code of the fulfillment center
      description: Information about a fulfillment center
      title: Receiving.FulfillmentCenterViewModel
    Receiving.V2.InventoryQuantityViewModel:
      type: object
      properties:
        expected_quantity:
          type: integer
          description: Quantity of the inventory item submitted in the WRO
        inventory_id:
          type: integer
          description: ID of the inventory item
        received_quantity:
          type: integer
          description: Quantity of the inventory item received by the warehouse
        sku:
          type: string
          description: Sku of the inventory item
        stowed_quantity:
          type: integer
          description: Quantity of the inventory item stowed by the warehouse
      title: Receiving.V2.InventoryQuantityViewModel
    Receiving.PackageType:
      type: string
      enum:
        - Package
        - Pallet
        - FloorLoadedContainer
      title: Receiving.PackageType
    Receiving.V2.ReceivingOrderStatusHistoryViewModel:
      type: object
      properties:
        id:
          type: integer
          description: Unique id of the status
        status:
          type: string
          description: Name of the status
        timestamp:
          type: string
          format: date-time
          description: Timestamp when the status was recorded
      description: View model for receiving order status history
      title: Receiving.V2.ReceivingOrderStatusHistoryViewModel
    Receiving.V2.WarehouseReceivingOrderViewModel:
      type: object
      properties:
        box_labels_uri:
          type: string
          description: >-
            URL to the packing slip to be included in each box shipment for this
            receiving order
        box_packaging_type:
          $ref: '#/components/schemas/Receiving.PackingType'
        expected_arrival_date:
          type: string
          format: date-time
          description: Expected date that all packages will have arrived
        external_sync_timestamp:
          type: string
          format: date-time
          description: >-
            The timestamp in UTC when a 3rd party integrator has set in our
            system
        fulfillment_center:
          $ref: '#/components/schemas/Receiving.FulfillmentCenterViewModel'
        id:
          type: integer
          description: Unique id of the warehouse receiving order
        insert_date:
          type: string
          format: date-time
          description: Insert date of the receiving order
        inventory_quantities:
          type: array
          items:
            $ref: '#/components/schemas/Receiving.V2.InventoryQuantityViewModel'
          description: Inventory items and quantities within the WRO
        last_updated_date:
          type: string
          format: date-time
          description: Last date the receiving order was updated
        package_type:
          $ref: '#/components/schemas/Receiving.PackageType'
        purchase_order_number:
          type: string
          description: Purchase order number for a receiving order
        status:
          $ref: '#/components/schemas/Receiving.ReceivingStatus'
        status_history:
          type: array
          items:
            $ref: >-
              #/components/schemas/Receiving.V2.ReceivingOrderStatusHistoryViewModel
          description: The history of status changes for this receiving order
      title: Receiving.V2.WarehouseReceivingOrderViewModel
    Receiving.V2.WarehouseReceivingOrderViewModelArray:
      type: array
      items:
        $ref: '#/components/schemas/Receiving.V2.WarehouseReceivingOrderViewModel'
      title: Receiving.V2.WarehouseReceivingOrderViewModelArray
    Receiving.ValidationProblemDetails:
      type: object
      properties:
        detail:
          type: string
        errors:
          type: object
          additionalProperties:
            type: array
            items:
              type: string
        instance:
          type: string
        status:
          type: integer
        title:
          type: string
        type:
          type: string
      title: Receiving.ValidationProblemDetails
    Receiving.Get.2.0.Receiving.Not.Found.OneOf.ValidationProblemDetails:
      oneOf:
        - $ref: '#/components/schemas/Receiving.ValidationProblemDetails'
      title: Receiving.Get.2.0.Receiving.Not.Found.OneOf.ValidationProblemDetails
  securitySchemes:
    PAT:
      type: http
      scheme: bearer
      description: Authentication using Personal Access Token (PAT) token
    OAuth2:
      type: http
      scheme: bearer
      description: OAuth2 authentication using JWT tokens

```

## Examples



**Response**

```json
[
  {
    "box_labels_uri": "https://api.shipbob.com/2026-01/receiving/1/labels",
    "box_packaging_type": "EverythingInOneBox",
    "expected_arrival_date": "2019-08-24T14:15:22+00:00",
    "external_sync_timestamp": "2019-08-24T14:15:22+00:00",
    "fulfillment_center": {
      "address1": "5900 W Ogden Ave",
      "address2": "Suite 100",
      "city": "Cicero",
      "country": "USA",
      "email": "example@example.com",
      "id": 0,
      "name": "Cicero (IL)",
      "phone_number": "555-555-5555",
      "state": "IL",
      "timezone": "Central Standard Time",
      "zip_code": "60804"
    },
    "id": 0,
    "insert_date": "2019-08-24T14:15:22+00:00",
    "inventory_quantities": [
      {
        "expected_quantity": 0,
        "inventory_id": 0,
        "received_quantity": 0,
        "sku": "string",
        "stowed_quantity": 0
      }
    ],
    "last_updated_date": "2019-08-24T14:15:22+00:00",
    "package_type": "Package",
    "purchase_order_number": "string",
    "status": "Awaiting",
    "status_history": [
      {
        "id": 0,
        "status": "Processing",
        "timestamp": "2019-08-24T14:15:22+00:00"
      }
    ]
  }
]
```

**SDK Code**

```python default
import requests

url = "https://sandbox-api.shipbob.com/2026-01/receiving"

querystring = {"IDs":"[0]","Statuses":"[\"Awaiting\"]","InsertStartDate":"2019-08-24T14:15:22+00:00","InsertEndDate":"2019-08-24T14:15:22+00:00","FulfillmentCenterIds":"[0]","PurchaseOrderNumbers":"[\"string\"]","ExternalSync":"true","CompletedStartDate":"2019-08-24T14:15:22+00:00","CompletedEndDate":"2019-08-24T14:15:22+00:00"}

headers = {"Authorization": "Bearer <token>"}

response = requests.get(url, headers=headers, params=querystring)

print(response.json())
```

```javascript default
const url = 'https://sandbox-api.shipbob.com/2026-01/receiving?IDs=%5B0%5D&Statuses=%5B%22Awaiting%22%5D&InsertStartDate=2019-08-24T14%3A15%3A22%2B00%3A00&InsertEndDate=2019-08-24T14%3A15%3A22%2B00%3A00&FulfillmentCenterIds=%5B0%5D&PurchaseOrderNumbers=%5B%22string%22%5D&ExternalSync=true&CompletedStartDate=2019-08-24T14%3A15%3A22%2B00%3A00&CompletedEndDate=2019-08-24T14%3A15%3A22%2B00%3A00';
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};

try {
  const response = await fetch(url, options);
  const data = await response.json();
  console.log(data);
} catch (error) {
  console.error(error);
}
```

```go default
package main

import (
	"fmt"
	"net/http"
	"io"
)

func main() {

	url := "https://sandbox-api.shipbob.com/2026-01/receiving?IDs=%5B0%5D&Statuses=%5B%22Awaiting%22%5D&InsertStartDate=2019-08-24T14%3A15%3A22%2B00%3A00&InsertEndDate=2019-08-24T14%3A15%3A22%2B00%3A00&FulfillmentCenterIds=%5B0%5D&PurchaseOrderNumbers=%5B%22string%22%5D&ExternalSync=true&CompletedStartDate=2019-08-24T14%3A15%3A22%2B00%3A00&CompletedEndDate=2019-08-24T14%3A15%3A22%2B00%3A00"

	req, _ := http.NewRequest("GET", url, nil)

	req.Header.Add("Authorization", "Bearer <token>")

	res, _ := http.DefaultClient.Do(req)

	defer res.Body.Close()
	body, _ := io.ReadAll(res.Body)

	fmt.Println(res)
	fmt.Println(string(body))

}
```

```ruby default
require 'uri'
require 'net/http'

url = URI("https://sandbox-api.shipbob.com/2026-01/receiving?IDs=%5B0%5D&Statuses=%5B%22Awaiting%22%5D&InsertStartDate=2019-08-24T14%3A15%3A22%2B00%3A00&InsertEndDate=2019-08-24T14%3A15%3A22%2B00%3A00&FulfillmentCenterIds=%5B0%5D&PurchaseOrderNumbers=%5B%22string%22%5D&ExternalSync=true&CompletedStartDate=2019-08-24T14%3A15%3A22%2B00%3A00&CompletedEndDate=2019-08-24T14%3A15%3A22%2B00%3A00")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'

response = http.request(request)
puts response.read_body
```

```java default
import com.mashape.unirest.http.HttpResponse;
import com.mashape.unirest.http.Unirest;

HttpResponse<String> response = Unirest.get("https://sandbox-api.shipbob.com/2026-01/receiving?IDs=%5B0%5D&Statuses=%5B%22Awaiting%22%5D&InsertStartDate=2019-08-24T14%3A15%3A22%2B00%3A00&InsertEndDate=2019-08-24T14%3A15%3A22%2B00%3A00&FulfillmentCenterIds=%5B0%5D&PurchaseOrderNumbers=%5B%22string%22%5D&ExternalSync=true&CompletedStartDate=2019-08-24T14%3A15%3A22%2B00%3A00&CompletedEndDate=2019-08-24T14%3A15%3A22%2B00%3A00")
  .header("Authorization", "Bearer <token>")
  .asString();
```

```php default
<?php
require_once('vendor/autoload.php');

$client = new \GuzzleHttp\Client();

$response = $client->request('GET', 'https://sandbox-api.shipbob.com/2026-01/receiving?IDs=%5B0%5D&Statuses=%5B%22Awaiting%22%5D&InsertStartDate=2019-08-24T14%3A15%3A22%2B00%3A00&InsertEndDate=2019-08-24T14%3A15%3A22%2B00%3A00&FulfillmentCenterIds=%5B0%5D&PurchaseOrderNumbers=%5B%22string%22%5D&ExternalSync=true&CompletedStartDate=2019-08-24T14%3A15%3A22%2B00%3A00&CompletedEndDate=2019-08-24T14%3A15%3A22%2B00%3A00', [
  'headers' => [
    'Authorization' => 'Bearer <token>',
  ],
]);

echo $response->getBody();
```

```csharp default
using RestSharp;

var client = new RestClient("https://sandbox-api.shipbob.com/2026-01/receiving?IDs=%5B0%5D&Statuses=%5B%22Awaiting%22%5D&InsertStartDate=2019-08-24T14%3A15%3A22%2B00%3A00&InsertEndDate=2019-08-24T14%3A15%3A22%2B00%3A00&FulfillmentCenterIds=%5B0%5D&PurchaseOrderNumbers=%5B%22string%22%5D&ExternalSync=true&CompletedStartDate=2019-08-24T14%3A15%3A22%2B00%3A00&CompletedEndDate=2019-08-24T14%3A15%3A22%2B00%3A00");
var request = new RestRequest(Method.GET);
request.AddHeader("Authorization", "Bearer <token>");
IRestResponse response = client.Execute(request);
```

```swift default
import Foundation

let headers = ["Authorization": "Bearer <token>"]

let request = NSMutableURLRequest(url: NSURL(string: "https://sandbox-api.shipbob.com/2026-01/receiving?IDs=%5B0%5D&Statuses=%5B%22Awaiting%22%5D&InsertStartDate=2019-08-24T14%3A15%3A22%2B00%3A00&InsertEndDate=2019-08-24T14%3A15%3A22%2B00%3A00&FulfillmentCenterIds=%5B0%5D&PurchaseOrderNumbers=%5B%22string%22%5D&ExternalSync=true&CompletedStartDate=2019-08-24T14%3A15%3A22%2B00%3A00&CompletedEndDate=2019-08-24T14%3A15%3A22%2B00%3A00")! as URL,
                                        cachePolicy: .useProtocolCachePolicy,
                                    timeoutInterval: 10.0)
request.httpMethod = "GET"
request.allHTTPHeaderFields = headers

let session = URLSession.shared
let dataTask = session.dataTask(with: request as URLRequest, completionHandler: { (data, response, error) -> Void in
  if (error != nil) {
    print(error as Any)
  } else {
    let httpResponse = response as? HTTPURLResponse
    print(httpResponse)
  }
})

dataTask.resume()
```