Payments
Subscriptions
Discounts
Licenses
Customers
Products
Payouts
Miscellaneous
Products
Update Product
Update a product’s details.
PATCH
/
products
/
{id}
Copy
import DodoPayments from 'dodopayments';
const client = new DodoPayments({
bearerToken: process.env['DODO_PAYMENTS_API_KEY'], // This is the default and can be omitted
});
await client.products.update('id');
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Body
application/json
Response
200
Product Updated Successfully
Copy
import DodoPayments from 'dodopayments';
const client = new DodoPayments({
bearerToken: process.env['DODO_PAYMENTS_API_KEY'], // This is the default and can be omitted
});
await client.products.update('id');
Assistant
Responses are generated using AI and may contain mistakes.