Read this merchant's sandbox readiness checklist
curl --request GET \
--url https://api-test.drop-hub.com/v2/external/sandbox/readiness \
--cookie dh_at=import requests
url = "https://api-test.drop-hub.com/v2/external/sandbox/readiness"
headers = {"cookie": "dh_at="}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {cookie: 'dh_at='}};
fetch('https://api-test.drop-hub.com/v2/external/sandbox/readiness', 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-test.drop-hub.com/v2/external/sandbox/readiness",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_COOKIE => "dh_at=",
]);
$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-test.drop-hub.com/v2/external/sandbox/readiness"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("cookie", "dh_at=")
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-test.drop-hub.com/v2/external/sandbox/readiness")
.header("cookie", "dh_at=")
.asString();require 'uri'
require 'net/http'
url = URI("https://api-test.drop-hub.com/v2/external/sandbox/readiness")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["cookie"] = 'dh_at='
response = http.request(request)
puts response.read_body{
"generation": 2,
"canCreateShipment": true,
"nextShipmentDispatchHeld": true,
"branchCode": "SANDBOX_BRANCH",
"pickupLocationCode": "SANDBOX_PICKUP",
"pickup": {
"latitude": 0,
"longitude": 0
},
"delivery": {
"latitude": 0,
"longitude": 0
},
"destinationCityCode": "RUH",
"sandboxDriverPhone": "<string>",
"prerequisites": [
{
"prerequisite": "merchant",
"ready": true
}
]
}{
"type": "https://api.drop-hub.com/problems/authentication-required",
"title": "Authentication required",
"status": 401,
"detail": "Authentication is required for this resource.",
"instance": "/v2/external/shipments/018f2d8a-1f00-7000-8000-000000000206",
"code": "AUTHENTICATION_REQUIRED",
"timestamp": "2026-08-22T18:30:00Z",
"correlationId": "018f2d8a-1f00-7000-8000-000000000207",
"requestId": "018f2d8a-1f00-7000-8000-000000000208"
}{
"type": "https://api.drop-hub.com/problems/access-denied",
"title": "Access denied",
"status": 403,
"detail": "Access to this resource is denied.",
"instance": "/v2/external/shipments/018f2d8a-1f00-7000-8000-000000000206",
"code": "ACCESS_DENIED",
"timestamp": "2026-08-22T18:30:00Z",
"correlationId": "018f2d8a-1f00-7000-8000-000000000207",
"requestId": "018f2d8a-1f00-7000-8000-000000000208"
}{
"type": "https://api.drop-hub.com/problems/access-denied",
"title": "Access denied",
"status": 403,
"detail": "Access to this resource is denied.",
"instance": "/v2/external/shipments/018f2d8a-1f00-7000-8000-000000000206",
"code": "ACCESS_DENIED",
"timestamp": "2026-08-22T18:30:00Z",
"correlationId": "018f2d8a-1f00-7000-8000-000000000207",
"requestId": "018f2d8a-1f00-7000-8000-000000000208"
}Sandbox
Read this merchant's sandbox readiness checklist
GET
/
v2
/
external
/
sandbox
/
readiness
Read this merchant's sandbox readiness checklist
curl --request GET \
--url https://api-test.drop-hub.com/v2/external/sandbox/readiness \
--cookie dh_at=import requests
url = "https://api-test.drop-hub.com/v2/external/sandbox/readiness"
headers = {"cookie": "dh_at="}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {cookie: 'dh_at='}};
fetch('https://api-test.drop-hub.com/v2/external/sandbox/readiness', 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-test.drop-hub.com/v2/external/sandbox/readiness",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_COOKIE => "dh_at=",
]);
$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-test.drop-hub.com/v2/external/sandbox/readiness"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("cookie", "dh_at=")
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-test.drop-hub.com/v2/external/sandbox/readiness")
.header("cookie", "dh_at=")
.asString();require 'uri'
require 'net/http'
url = URI("https://api-test.drop-hub.com/v2/external/sandbox/readiness")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["cookie"] = 'dh_at='
response = http.request(request)
puts response.read_body{
"generation": 2,
"canCreateShipment": true,
"nextShipmentDispatchHeld": true,
"branchCode": "SANDBOX_BRANCH",
"pickupLocationCode": "SANDBOX_PICKUP",
"pickup": {
"latitude": 0,
"longitude": 0
},
"delivery": {
"latitude": 0,
"longitude": 0
},
"destinationCityCode": "RUH",
"sandboxDriverPhone": "<string>",
"prerequisites": [
{
"prerequisite": "merchant",
"ready": true
}
]
}{
"type": "https://api.drop-hub.com/problems/authentication-required",
"title": "Authentication required",
"status": 401,
"detail": "Authentication is required for this resource.",
"instance": "/v2/external/shipments/018f2d8a-1f00-7000-8000-000000000206",
"code": "AUTHENTICATION_REQUIRED",
"timestamp": "2026-08-22T18:30:00Z",
"correlationId": "018f2d8a-1f00-7000-8000-000000000207",
"requestId": "018f2d8a-1f00-7000-8000-000000000208"
}{
"type": "https://api.drop-hub.com/problems/access-denied",
"title": "Access denied",
"status": 403,
"detail": "Access to this resource is denied.",
"instance": "/v2/external/shipments/018f2d8a-1f00-7000-8000-000000000206",
"code": "ACCESS_DENIED",
"timestamp": "2026-08-22T18:30:00Z",
"correlationId": "018f2d8a-1f00-7000-8000-000000000207",
"requestId": "018f2d8a-1f00-7000-8000-000000000208"
}{
"type": "https://api.drop-hub.com/problems/access-denied",
"title": "Access denied",
"status": 403,
"detail": "Access to this resource is denied.",
"instance": "/v2/external/shipments/018f2d8a-1f00-7000-8000-000000000206",
"code": "ACCESS_DENIED",
"timestamp": "2026-08-22T18:30:00Z",
"correlationId": "018f2d8a-1f00-7000-8000-000000000207",
"requestId": "018f2d8a-1f00-7000-8000-000000000208"
}Authorizations
webSessionCookieoauthClientCredentials
Opaque httpOnly browser session cookie issued by the existing human authentication flows. Browsers send it automatically; Swagger UI cannot and does not persist or manufacture it.
Response
Tenant-bound readiness and routable fixture coordinates
Required range:
x >= 1True when the next sandbox shipment will remain before any driver offer; consumed atomically by that creation.
Allowed value:
"SANDBOX_BRANCH"Allowed value:
"SANDBOX_PICKUP"Show child attributes
Show child attributes
Show child attributes
Show child attributes
Use this fixture city code in price-estimate and shipment requests.
Allowed value:
"RUH"Sandbox-only driver OTP identity used to progress the real canonical driver lifecycle.
Pattern:
^05[0-9]{8}$Show child attributes
Show child attributes
⌘I
