Products
Get product
Retrieve the details of an existing product. Only the first 50 price configurations are returned, to retrieve all of them use GET /v1/price-configurations.
get/v1/products/{id}
Path parameters
idstring required
Query parameters
price_book_idstring
Response
Example response
{
"id": "itm_3kXODDF42QXtnL",
"name": "Product name",
"status": "active",
"description": "Product internal description",
"public_description": "Product public description",
"integrations": [
{
"entity_id": "123456789",
"provider_name": "stripe",
"provider_account_id": "acc_1234567890"
}
],
"is_available_on_demand": true,
"is_available_on_subscription": true,
"price_configurations": [
{
"status": "active",
"currency": "EUR",
"country": "FR"
}
]
}