Skip to main content

Endpoint

PUT https://api.gumroad.com/v2/products/:id
Update an existing product’s details.

Authentication

Requires OAuth scope: edit_products

Path Parameters

id
string
required
The product’s external ID or unique permalink

Request Body

This endpoint is currently not implemented and will return a 404 error. Product updates must be done through the Gumroad dashboard.

Response

This endpoint returns a 404 error response.

Example Request

curl -X PUT "https://api.gumroad.com/v2/products/kUxDaJMg5NP9PpHRCNYCrw==" \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "Updated Product Name",
    "price": 3999
  }'

Error Response

{
  "error": "Not Found"
}
Product updates via API are not currently supported. Please update products through the Gumroad dashboard.

Build docs developers (and LLMs) love