POST
stripe_products_update.py
from charter.packs import stripe
result = await stripe.products_update.ainvoke({"id": ...})
Path parameters
| Field | Type | Description |
|---|---|---|
id * | string | The ID of the product to update. |
Body
| Field | Type | Description |
|---|---|---|
description | string | Customer-facing description of the product. |
active | boolean | Whether the product can be bought. Absent, it can. |
images | string[] | Up to eight image URLs. max 8 items |
url | string | A public webpage for the product. |
metadata | map of string | Set of key-value pairs attached to the product. |
name | string | The product’s name. |
defaultPrice | string | The ID of an existing price to make this product’s default. |