Retrieves all available FOB (Free On Board) points for a product, which represent the shipping origin locations and associated shipping costs.
Method signature
await client.productPricingAndConfiguration.getFobPoints(params)
Parameters
The unique identifier for the product
Country code for localization (e.g., “US”, “CA”)
Language code for localization (e.g., “en”, “fr”)
Returns
Returns a promise that resolves to an array of FOB points, including:
- FOB point identifier
- Location name and address
- Postal/ZIP code
- Country and region information
- Associated shipping costs and options
Example
const fobPoints =
await client.productPricingAndConfiguration.getFobPoints({
productId: 'item_id',
localizationCountry: 'US',
localizationLanguage: 'en',
});
console.log(fobPoints);