import DodoPayments from 'dodopayments';
const client = new DodoPayments({
bearerToken: 'My Bearer Token',
});
await client.products.unarchive('id');
Unarchive a product associated with your account.
import DodoPayments from 'dodopayments';
const client = new DodoPayments({
bearerToken: 'My Bearer Token',
});
await client.products.unarchive('id');
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Product Delected Successfully
Was this page helpful?