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

# Get Unidentified Receiving Orders


GET https://gateway-dev.shipbob.dev/2026-07/unidentified-receiving-order

Returns a list of unidentified receiving orders (UROs) for the merchant. Use isCompleted to filter to UROs that are not yet linked to a WRO (false, default) or that are linked (true). Up to 50 records are returned per page.


Reference: https://developer-dev.shipbob.dev/api/receiving/get-unidentified-receiving-orders

## OpenAPI Specification

```yaml
openapi: 3.1.0
info:
  title: api-2026-07
  version: 1.0.0
paths:
  /2026-07/unidentified-receiving-order:
    get:
      operationId: get-unidentified-receiving-orders
      summary: |
        Get Unidentified Receiving Orders
      description: >
        Returns a list of unidentified receiving orders (UROs) for the merchant.
        Use isCompleted to filter to UROs that are not yet linked to a WRO
        (false, default) or that are linked (true). Up to 50 records are
        returned per page.
      tags:
        - receiving
      parameters:
        - name: isCompleted
          in: query
          description: >
            When false (default) returns UROs not yet linked to a WRO; when true
            returns UROs linked to a WRO.
          required: false
          schema:
            type: boolean
        - name: page
          in: query
          description: |
            1-based page number. Up to 50 records are returned per page.
          required: false
          schema:
            type: integer
        - 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.V3.UnidentifiedReceivingOrderViewModelArray
        '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
servers:
  - url: https://gateway-dev.shipbob.dev
    description: https://gateway-dev.shipbob.dev
components:
  schemas:
    Receiving.V3.UroAttachmentViewModel:
      type: object
      properties:
        type:
          type: string
          description: >-
            Attachment type, e.g. "label" (box/label image) or "item" (product
            image)
        url:
          type: string
          description: URL to the attachment image
      description: An image attached to an unidentified receiving order
      title: Receiving.V3.UroAttachmentViewModel
    Receiving.V3.UnidentifiedReceivingOrderViewModel:
      type: object
      properties:
        attachments:
          type: array
          items:
            $ref: '#/components/schemas/Receiving.V3.UroAttachmentViewModel'
          description: Images attached to the URO. Empty array when none.
        barcode:
          type:
            - string
            - 'null'
          description: URO barcode/tag
        comment:
          type:
            - string
            - 'null'
          description: Free-text comment on the URO
        created_date:
          type: string
          format: date-time
          description: Date the URO was created
        id:
          type: integer
          description: Unique id of the unidentified receiving order
        linked_wro_date:
          type:
            - string
            - 'null'
          format: date-time
          description: Timestamp the URO was linked to a WRO, or null when not linked
        linked_wro_id:
          type:
            - integer
            - 'null'
          description: Id of the linked WRO, or null/0 when the URO is not yet linked
        reason:
          type:
            - string
            - 'null'
          description: Reason the receiving order is unidentified
        tracking_barcode:
          type:
            - string
            - 'null'
          description: Tracking barcode captured for the URO
      description: Merchant-facing view of an unidentified receiving order
      title: Receiving.V3.UnidentifiedReceivingOrderViewModel
    Receiving.V3.UnidentifiedReceivingOrderViewModelArray:
      type: array
      items:
        $ref: '#/components/schemas/Receiving.V3.UnidentifiedReceivingOrderViewModel'
      title: Receiving.V3.UnidentifiedReceivingOrderViewModelArray
  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
[
  {
    "attachments": [
      {
        "type": "label",
        "url": "https://example.com/image1.jpg"
      },
      {
        "type": "item",
        "url": "https://example.com/image2.jpg"
      }
    ],
    "barcode": "U-102256-01/27/25",
    "comment": "string",
    "created_date": "2019-08-24T14:15:22+00:00",
    "id": 0,
    "linked_wro_date": "2019-08-24T14:15:22+00:00",
    "linked_wro_id": 0,
    "reason": "Other",
    "tracking_barcode": "string"
  }
]
```

**SDK Code**

```python default
import requests

url = "https://gateway-dev.shipbob.dev/2026-07/unidentified-receiving-order"

querystring = {"isCompleted":"true"}

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

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

print(response.json())
```

```javascript default
const url = 'https://gateway-dev.shipbob.dev/2026-07/unidentified-receiving-order?isCompleted=true';
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://gateway-dev.shipbob.dev/2026-07/unidentified-receiving-order?isCompleted=true"

	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://gateway-dev.shipbob.dev/2026-07/unidentified-receiving-order?isCompleted=true")

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://gateway-dev.shipbob.dev/2026-07/unidentified-receiving-order?isCompleted=true")
  .header("Authorization", "Bearer <token>")
  .asString();
```

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

$client = new \GuzzleHttp\Client();

$response = $client->request('GET', 'https://gateway-dev.shipbob.dev/2026-07/unidentified-receiving-order?isCompleted=true', [
  'headers' => [
    'Authorization' => 'Bearer <token>',
  ],
]);

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

```csharp default
using RestSharp;

var client = new RestClient("https://gateway-dev.shipbob.dev/2026-07/unidentified-receiving-order?isCompleted=true");
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://gateway-dev.shipbob.dev/2026-07/unidentified-receiving-order?isCompleted=true")! 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()
```