Payments
Subscriptions
Discounts
Licenses
Customers
Products
Payouts
Miscellaneous
Products
Create Product
Create a new product.
POST
/
products
Copy
import DodoPayments from 'dodopayments';
const client = new DodoPayments({
bearerToken: process.env['DODO_PAYMENTS_API_KEY'], // This is the default and can be omitted
});
const product = await client.products.create({
price: { currency: 'AED', discount: 0, price: 0, purchasing_power_parity: true, type: 'one_time_price' },
tax_category: 'digital_products',
});
console.log(product.brand_id);
Copy
{
"addons": [
"<string>"
],
"brand_id": "<string>",
"business_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"description": "<string>",
"digital_product_delivery": null,
"image": "<string>",
"is_recurring": true,
"license_key_activation_message": "<string>",
"license_key_activations_limit": 123,
"license_key_duration": null,
"license_key_enabled": true,
"name": "<string>",
"price": {
"currency": "AED",
"discount": 123,
"pay_what_you_want": true,
"price": 123,
"purchasing_power_parity": true,
"suggested_price": 123,
"tax_inclusive": true,
"type": "one_time_price"
},
"product_id": "<string>",
"tax_category": "digital_products",
"updated_at": "2023-11-07T05:31:56Z"
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Body
application/json
Response
200
application/json
Product Created Successfully
The response is of type object
.
Copy
import DodoPayments from 'dodopayments';
const client = new DodoPayments({
bearerToken: process.env['DODO_PAYMENTS_API_KEY'], // This is the default and can be omitted
});
const product = await client.products.create({
price: { currency: 'AED', discount: 0, price: 0, purchasing_power_parity: true, type: 'one_time_price' },
tax_category: 'digital_products',
});
console.log(product.brand_id);
Copy
{
"addons": [
"<string>"
],
"brand_id": "<string>",
"business_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"description": "<string>",
"digital_product_delivery": null,
"image": "<string>",
"is_recurring": true,
"license_key_activation_message": "<string>",
"license_key_activations_limit": 123,
"license_key_duration": null,
"license_key_enabled": true,
"name": "<string>",
"price": {
"currency": "AED",
"discount": 123,
"pay_what_you_want": true,
"price": 123,
"purchasing_power_parity": true,
"suggested_price": 123,
"tax_inclusive": true,
"type": "one_time_price"
},
"product_id": "<string>",
"tax_category": "digital_products",
"updated_at": "2023-11-07T05:31:56Z"
}
Assistant
Responses are generated using AI and may contain mistakes.