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
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
}
}Update a product price
Update a product price by its ID. Setting `active: false` on the parent product's default price returns 409 DEFAULT_PRICE_CONFLICT, and on a price still referenced by a live payment link/subscription returns 409 PRICE_REFERENCED with `details.references` (same guards as the archive endpoint).
Restore an archived product
Restores a soft-deleted product back to the Active state: atomically clears `deleted_at` AND sets `active = true`.