Solid Commerce Docs
POST/v1/fulfillment/ship-now/reprint/{shipmentId}

POST /v1/fulfillment/ship-now/reprint/{shipmentId}

Scopes: fulfillment:ship_now:write

Requires scope: fulfillment:ship_now:write.

Parameters

NameInTypeRequiredDescription
shipmentIdpathinteger<int32>yes
print_packing_slipquerybooleanno

Examples

import { SolidCommerceClient } from '@solidcommerce/sdk';

const client = new SolidCommerceClient({
  apiKey: process.env.SOLIDCOMMERCE_API_KEY!,
});

const { data, error } = await client.raw.POST('/v1/fulfillment/ship-now/reprint/{shipmentId}', {
  // params: { path: { id: '...' }, query: { limit: 25 } },
  // body: { /* request body */ },
});

if (error) throw error;
console.log(data);