GET
/
products
/
{id}
import DodoPayments from 'dodopayments';

const client = new DodoPayments({
  bearerToken: process.env['DODO_PAYMENTS_API_KEY'], // This is the default and can be omitted
});

async function main() {
  const product = await client.products.retrieve('id');

  console.log(product.business_id);
}

main();
{
  "addons": [
    "<string>"
  ],
  "business_id": "<string>",
  "created_at": "2023-11-07T05:31:56Z",
  "description": "<string>",
  "image": "<string>",
  "is_recurring": true,
  "license_key_activation_message": "<string>",
  "license_key_activations_limit": 123,
  "license_key_duration": {
    "count": 123,
    "interval": "Day"
  },
  "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

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Product Id

Response

200 - application/json
Product Details

The response is of type object.