import DodoPayments from 'dodopayments';
const client = new DodoPayments({
bearerToken: 'My Bearer Token',
});
await client.products.update('id');
Update a product’s details.
import DodoPayments from 'dodopayments';
const client = new DodoPayments({
bearerToken: 'My Bearer Token',
});
await client.products.update('id');
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Product Updated Successfully
Was this page helpful?