Update a product
Update a product by its ID
Authorization
apiKey Merchant API key. Publishable keys (pk_test_* / pk_live_) are safe for browser/frontend use and carry a limited scope set (sessions, payment_instruments, customers, orders writes; products, product_prices, payment_links reads). Secret keys (sk_test_ / sk_live_*) grant full admin access and must only be used server-side.
In: header
Path Parameters
1 <= lengthRequest Body
application/json
TypeScript Definitions
Use the request body type in TypeScript.
Response Body
application/json
application/json
application/json
application/json
application/json
application/json
curl -X PATCH "https://loading/v1/api/products/string" \ -H "Content-Type: application/json" \ -d '{ "name": "Updated Widget", "description": "An updated high-quality widget" }'{
"success": true,
"timestamp": "2026-02-06T12:00:00.000Z",
"message": "Product updated",
"data": {
"id": "prod_abc123",
"name": "Updated Widget",
"description": "An updated high-quality widget",
"active": true,
"updated_at": "2026-02-06T12:00:00.000Z"
}
}{
"success": false,
"timestamp": "2019-08-24T14:15:22Z",
"error": {
"code": "string",
"message": "string",
"details": null
}
}{
"success": false,
"timestamp": "2019-08-24T14:15:22Z",
"error": {
"code": "string",
"message": "string",
"details": null
}
}{
"success": false,
"timestamp": "2019-08-24T14:15:22Z",
"error": {
"code": "string",
"message": "string",
"details": null
}
}{
"success": false,
"timestamp": "2019-08-24T14:15:22Z",
"error": {
"code": "string",
"message": "string",
"details": null
}
}{
"success": false,
"timestamp": "2019-08-24T14:15:22Z",
"error": {
"code": "string",
"message": "string",
"details": null
}
}Unarchive a product (atomic)
Atomically clears `deleted_at` AND sets `active = true`. Use this instead of `PATCH /:id/restore` followed by `PATCH /:id` with `active: true` — separate calls leave a brief window where the product is restored-but-inactive.
Create a new product price
Create a new product price. The target `product_id` must belong to the caller's company in the current environment; otherwise 404.