π‘Product
GET
Route: /api/v1/similar/{id}
/api/v1/similar/{id}Get saved product details of a product with id ={id}.
Response ( status code: 200 )
{
"id": string,
"title": string,
"description": string,
"image": string,
"priceRange": {
"maxVariantPrice": {
"amount": string,
"currencyCode": string
}
}
}example
POST
Ideally, This should be done through the dashboard by syncing with your e-commerce provider. Doing this manually may cause inconsistency.
Route: /api/v1/similar/{id}
/api/v1/similar/{id}Create a product with id ={id}.
Response ( status code: 200 )
PATCH
Ideally, This should be done through the dashboard by syncing with your e-commerce provider. Doing this manually may cause inconsistency.
Route: /api/v1/similar/{id}
/api/v1/similar/{id}Update product details with id ={id}.
Response ( status code: 200 )
Last updated