import HenrySDK from '@henrylabs/sdk';const client = new HenrySDK({ apiKey: process.env['HENRY_SDK_API_KEY'], // This is the default and can be omitted});const response = await client.merchants.getShippingInfo();console.log(response.message);
Retrieve shipping information including shipping tiers and free shipping thresholds for merchants
GET
/
merchants
/
shipping-info
JavaScript
Copy
import HenrySDK from '@henrylabs/sdk';const client = new HenrySDK({ apiKey: process.env['HENRY_SDK_API_KEY'], // This is the default and can be omitted});const response = await client.merchants.getShippingInfo();console.log(response.message);