Skip to main content

Documentation Index

Fetch the complete documentation index at: https://mintlify.com/manishrc/promostandards-sdk-js/llms.txt

Use this file to discover all available pages before exploring further.

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

productId
string
required
The unique identifier for the product
localizationCountry
string
required
Country code for localization (e.g., “US”, “CA”)
localizationLanguage
string
required
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);