import DodoPayments from 'dodopayments';
const client = new DodoPayments({
bearerToken: 'My Bearer Token',
});
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);
{
"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"
}
Create a new product.
import DodoPayments from 'dodopayments';
const client = new DodoPayments({
bearerToken: 'My Bearer Token',
});
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);
{
"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"
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Product Created Successfully
The response is of type object
.