Get Inbound Shipment
curl --request GET \
--url https://api.getredo.com/v2.2/stores/{storeId}/inbound-shipments/{inboundShipmentId} \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.getredo.com/v2.2/stores/{storeId}/inbound-shipments/{inboundShipmentId}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.getredo.com/v2.2/stores/{storeId}/inbound-shipments/{inboundShipmentId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.getredo.com/v2.2/stores/{storeId}/inbound-shipments/{inboundShipmentId}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.getredo.com/v2.2/stores/{storeId}/inbound-shipments/{inboundShipmentId}"
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(string(body))
}HttpResponse<String> response = Unirest.get("https://api.getredo.com/v2.2/stores/{storeId}/inbound-shipments/{inboundShipmentId}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.getredo.com/v2.2/stores/{storeId}/inbound-shipments/{inboundShipmentId}")
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{
"inbound_shipment": {
"id": "inb_7a3f9c2e1b",
"shipment_id": "SHIP-2026-0042",
"status": "IN_TRANSIT",
"location": {
"id": "loc_4d8e1a2b3c",
"name": "East Coast Warehouse"
},
"carrier": "FedEx Freight",
"tracking_number": "794644790132",
"tracking_url": "https://www.fedex.com/fedextrack/?trknbr=794644790132",
"estimated_arrival_date": "2026-04-15",
"actual_arrival_date": null,
"freight_type": "LTL",
"payment_terms": "NET30",
"freight_cost": {
"amount": "1250.00",
"currency": "USD"
},
"duty_cost": {
"amount": "1250.00",
"currency": "USD"
},
"items": [
{
"id": "isp_8b2c3d4e5f",
"product": {
"id": "prd_1a2b3c4d5e",
"title": "Classic Cotton T-Shirt - Black / M",
"sku": "TSH-BLK-M",
"image_url": "https://cdn.example.com/tshirt-blk-m.jpg",
"upc": "012345678901"
},
"quantity": 500,
"received_quantity": 0,
"damaged_quantity": 0,
"missing_quantity": 0,
"discrepancy": -150,
"packing_mode": "individual"
}
],
"sku_count": 2,
"item_count": 800,
"received_count": 0,
"created_at": "2026-03-28T14:30:00Z",
"updated_at": "2026-03-29T09:15:00Z",
"custom_volume_cubic_meters": 2.4,
"purchase_orders": [
{
"id": "po_5e6f7a8b9c",
"name": "PO-2026-0018"
}
],
"transfer_orders": [
{
"id": "po_5e6f7a8b9c",
"name": "PO-2026-0018"
}
],
"files": [
{
"id": "isf_3d4e5f6g7h",
"title": "Packing List.pdf",
"url": "https://storage.example.com/files/packing-list.pdf",
"content_type": "application/pdf",
"created_at": "2026-03-28T14:35:00Z"
}
],
"damaged_count": 5,
"missing_count": 0
}
}{
"detail": "<string>",
"instance": "<string>",
"title": "<string>",
"type": "about:blank"
}{
"detail": "<string>",
"instance": "<string>",
"title": "<string>",
"type": "about:blank"
}Inbound Shipments
Get Inbound Shipment
Get a single inbound shipment by ID. Returns additional detail fields including purchase orders, transfer orders, files, volume, item discrepancies, and packing modes.
Requires the inbound_shipments_read scope.
GET
/
stores
/
{storeId}
/
inbound-shipments
/
{inboundShipmentId}
Get Inbound Shipment
curl --request GET \
--url https://api.getredo.com/v2.2/stores/{storeId}/inbound-shipments/{inboundShipmentId} \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.getredo.com/v2.2/stores/{storeId}/inbound-shipments/{inboundShipmentId}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.getredo.com/v2.2/stores/{storeId}/inbound-shipments/{inboundShipmentId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.getredo.com/v2.2/stores/{storeId}/inbound-shipments/{inboundShipmentId}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.getredo.com/v2.2/stores/{storeId}/inbound-shipments/{inboundShipmentId}"
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(string(body))
}HttpResponse<String> response = Unirest.get("https://api.getredo.com/v2.2/stores/{storeId}/inbound-shipments/{inboundShipmentId}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.getredo.com/v2.2/stores/{storeId}/inbound-shipments/{inboundShipmentId}")
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{
"inbound_shipment": {
"id": "inb_7a3f9c2e1b",
"shipment_id": "SHIP-2026-0042",
"status": "IN_TRANSIT",
"location": {
"id": "loc_4d8e1a2b3c",
"name": "East Coast Warehouse"
},
"carrier": "FedEx Freight",
"tracking_number": "794644790132",
"tracking_url": "https://www.fedex.com/fedextrack/?trknbr=794644790132",
"estimated_arrival_date": "2026-04-15",
"actual_arrival_date": null,
"freight_type": "LTL",
"payment_terms": "NET30",
"freight_cost": {
"amount": "1250.00",
"currency": "USD"
},
"duty_cost": {
"amount": "1250.00",
"currency": "USD"
},
"items": [
{
"id": "isp_8b2c3d4e5f",
"product": {
"id": "prd_1a2b3c4d5e",
"title": "Classic Cotton T-Shirt - Black / M",
"sku": "TSH-BLK-M",
"image_url": "https://cdn.example.com/tshirt-blk-m.jpg",
"upc": "012345678901"
},
"quantity": 500,
"received_quantity": 0,
"damaged_quantity": 0,
"missing_quantity": 0,
"discrepancy": -150,
"packing_mode": "individual"
}
],
"sku_count": 2,
"item_count": 800,
"received_count": 0,
"created_at": "2026-03-28T14:30:00Z",
"updated_at": "2026-03-29T09:15:00Z",
"custom_volume_cubic_meters": 2.4,
"purchase_orders": [
{
"id": "po_5e6f7a8b9c",
"name": "PO-2026-0018"
}
],
"transfer_orders": [
{
"id": "po_5e6f7a8b9c",
"name": "PO-2026-0018"
}
],
"files": [
{
"id": "isf_3d4e5f6g7h",
"title": "Packing List.pdf",
"url": "https://storage.example.com/files/packing-list.pdf",
"content_type": "application/pdf",
"created_at": "2026-03-28T14:35:00Z"
}
],
"damaged_count": 5,
"missing_count": 0
}
}{
"detail": "<string>",
"instance": "<string>",
"title": "<string>",
"type": "about:blank"
}{
"detail": "<string>",
"instance": "<string>",
"title": "<string>",
"type": "about:blank"
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Store ID
Example:
"64e5a8a1af49a89df37e4ee7"
Inbound shipment ID
Example:
"inb_7a3f9c2e1b"
Response
Success
Inbound shipment (detail view).
Show child attributes
Show child attributes
Was this page helpful?
⌘I