Get Outbound Shipment
curl --request GET \
--url https://api.beachdepository.com/v1/outbound-shipments/{id} \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.beachdepository.com/v1/outbound-shipments/{id}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.beachdepository.com/v1/outbound-shipments/{id}', 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.beachdepository.com/v1/outbound-shipments/{id}",
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.beachdepository.com/v1/outbound-shipments/{id}"
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.beachdepository.com/v1/outbound-shipments/{id}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.beachdepository.com/v1/outbound-shipments/{id}")
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_bodyOutbound Shipments
Get Outbound Shipment
Retrieve a single outbound shipment
GET
/
outbound-shipments
/
{id}
Get Outbound Shipment
curl --request GET \
--url https://api.beachdepository.com/v1/outbound-shipments/{id} \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.beachdepository.com/v1/outbound-shipments/{id}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.beachdepository.com/v1/outbound-shipments/{id}', 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.beachdepository.com/v1/outbound-shipments/{id}",
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.beachdepository.com/v1/outbound-shipments/{id}"
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.beachdepository.com/v1/outbound-shipments/{id}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.beachdepository.com/v1/outbound-shipments/{id}")
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_bodyReturns a single outbound shipment by ID, including the destination address and shipping preference
copied from the originating outbound request.
carrier, trackingNumber, and trackingUrl are present once a Beach or attached carrier label
exists. Creating an outbound request does not create a
shipment — this resource is empty until staff approve the request and operators pick the items.
Permission: outbound_shipments:read
Path parameters
string
required
The outbound shipment ID
Response
{
"data": {
"id": "jm7shipout123",
"fboAccountId": "m97fbo456",
"organizationId": "k57orgxyz",
"status": "shipped",
"carrier": "FedEx",
"trackingNumber": "794658123456",
"trackingUrl": "https://www.fedex.com/fedextrack/?trknbr=794658123456",
"destinationAddress": {
"name": "Jane Doe",
"street1": "123 Main St",
"city": "Dallas",
"state": "TX",
"zip": "75001",
"country": "US"
},
"shipping": {
"mode": "cheapest",
"signatureType": "NoSignature",
"quote": {
"carrier": "FedEx",
"service": "FedEx Ground",
"serviceCode": "FEDEX_GROUND",
"quotedCents": 4168,
"currency": "USD",
"quotedAt": 1718442000000,
"insuredValueCents": 250000,
"weightGrams": 907
}
},
"shippedAt": "2025-05-12T10:00:00.000Z",
"createdAt": "2025-05-11T16:00:00Z"
}
}