Update Price
The Update Price API allows you to set the current MRP (Maximum Retail Price) and ESP (Expected Selling Price) for your SKUs on a location basis, ensuring accurate pricing within the Fynd ecosystem.
- Ensures pricing consistency across merchant's sales channels and Fynd
- Allows on-the-fly adjustments (e.g., flash sales, promotions)
Request Type:
PUT
Scheme:HTTPS
Endpoint:https://{{host}}/ims/v3/price
Try out Fynd Konnect's Update Price Endpoint
Common Request Header
Header | Mandatory | Description |
---|---|---|
x-access-token | Yes | Access token used for authenticating API requests to Fynd Konnect |
Important Considerations
The maximum number of records per Update Pricing request is 500
Query
Array [ ]
location_idstringrequired
Location identifier for the SKU
skustringrequired
SKU for the item
espnumberrequired
Effective selling price
mrpnumberrequired
Maximum retail price
currencystringrequired
Currency code (e.g., 'INR')
Success Response
dataobject
Response data regarding payload processing
metaobject
Metadata about the operation's result
API Call Example
- Fynd Konnect [Sandbox] https://fyndkonnect.konnect.uat.fyndx1.de/ims/v3/price
- Ginesys <> Konnect [Sandbox] https://ginesys.konnect.uat.fyndx1.de/ims/v3/price
- Unicommerce <> Konnect [Sandbox] https://unicommerce.konnect.uat.fyndx1.de/ims/v3/price
curl -i -X PUT \
https://fyndkonnect.konnect.uat.fyndx1.de/ims/v3/price \
-H 'Content-Type: application/json' \
-H 'x-access-token: YOUR_API_KEY_HERE' \
-d '[
{
"location_id": "string",
"sku": "string",
"esp": 0,
"mrp": 0,
"currency": "string"
}
]'
Response
application/json
{ "data": { "payload_count": 2, "success_count": 2, "failed_count": 0, "errors": [] }, "meta": { "ack_id": "679c771cc8f3483beac7862d", "integrationId": "64b8e312269b5327f0affee7", "time": "2025-01-31T06:58:37.608+00:00", "status": "SUCCESS" } }