Payments
Subscriptions
Discounts
Licenses
Customers
Products
Payouts
Miscellaneous
Products
Get Product Detail
Get detailed information about a specific product.
GET
/
products
/
{id}
JavaScript
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.retrieve('id');
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.
Path Parameters
Product Id
Response
200
application/json
Product Details
The response is of type object
.
JavaScript
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.retrieve('id');
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.