PUT
/
organizations
/
{orgId}
/
catalogs
/
{catalogId}
/
products
/
{productId}
/
rank
Update Product Rank
curl --request PUT \
  --url https://api.joinrefine.io/organizations/{orgId}/catalogs/{catalogId}/products/{productId}/rank \
  --header 'Content-Type: application/json' \
  --header 'REFINE_API_KEY: <api-key>' \
  --data '{
  "rank": "NO_BOOST"
}'
{
  "status": "success",
  "message": "product rank updated"
}

Authorizations

REFINE_API_KEY
string
header
required

API key for authentication

Path Parameters

orgId
string
required

Organization ID (UUID)

catalogId
string
required

Catalog ID (UUID)

productId
string
required

Product ID

Body

application/json

Response

200
application/json

Rank updated successfully

The response is of type object.