किसी उत्पाद के लिए सक्रिय स्थानीयकृत मूल्य नियमों की सूची।
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);