1. products
PriceShape API Staging
  • API Conventions
  • API Versioning
  • API Authentication
  • feeds
    • List feeds
      GET
    • Get a feed
      GET
  • products
    • history
      • Get product history
    • Update product fields
      PATCH
  1. products

Update product fields

Developing
PATCH
/products/{upi}
Permission:products:write

Request

Authorization
JWT Bearer
Add the parameter
Authorization
to Headers
Example:
Authorization: ********************
or
Path Params

Query Params

Body Params application/jsonRequired

Examples

Responses

🟢200
application/json
Default Response
Bodyapplication/json

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request PATCH 'https://api.staging.priceshape.io/products/?priceshapeFeedId=undefined' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
    "update": {
        "salesPrice": 0,
        "price": 0
    },
    "options": {
        "salesPriceVatIncluded": true,
        "priceVatIncluded": true
    }
}'
Response Response Example
{
    "success": "string"
}
Modified at 2026-08-27 07:57:38
Previous
Get product history
Built with