GET
/v1/fulfillment/ship-now/{orderId}/trackingGET /v1/fulfillment/ship-now/{orderId}/tracking
Scopes: fulfillment:ship_now:read
Requires scope: fulfillment:ship_now:read.
Parameters
| Name | In | Type | Required | Description |
|---|---|---|---|---|
orderId | path | integer<int32> | yes |
Examples
import { SolidCommerceClient } from '@solidcommerce/sdk';
const client = new SolidCommerceClient({
apiKey: process.env.SOLIDCOMMERCE_API_KEY!,
});
const { data, error } = await client.raw.GET('/v1/fulfillment/ship-now/{orderId}/tracking', {
// params: { path: { id: '...' }, query: { limit: 25 } },
// body: { /* request body */ },
});
if (error) throw error;
console.log(data);