List the active localized price rules for a product.
GET
/
products
/
{product_id}
/
localized-prices
JavaScript
import DodoPayments from 'dodopayments';
const client = new DodoPayments({
bearerToken: process.env['DODO_PAYMENTS_API_KEY'], // This is the default and can be omitted
});
const listLocalizedPricesResponse = await client.products.localizedPrices.list(
'pdt_R8AWMPiV8RyJElcCKvAID',
);
console.log(listLocalizedPricesResponse.items);
import DodoPayments from 'dodopayments';
const client = new DodoPayments({
bearerToken: process.env['DODO_PAYMENTS_API_KEY'], // This is the default and can be omitted
});
const listLocalizedPricesResponse = await client.products.localizedPrices.list(
'pdt_R8AWMPiV8RyJElcCKvAID',
);
console.log(listLocalizedPricesResponse.items);