Commerce
Get v1commerceproducts catalog mappings
GET
/
v1
/
commerce
/
products
/
{productID}
/
catalog-mappings
cURL
curl --request GET \
--url https://api.wazapin.com/v1/commerce/products/{productID}/catalog-mappingsconst options = {method: 'GET'};
fetch('https://api.wazapin.com/v1/commerce/products/{productID}/catalog-mappings', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.wazapin.com/v1/commerce/products/{productID}/catalog-mappings"
response = requests.get(url)
print(response.text){
"items": [
{
"id": "<string>",
"product_id": "<string>",
"retailer_id": "<string>",
"sync_status": "<string>",
"last_sync_error": "<string>",
"last_synced_at": "<string>",
"provider_product_id": "<string>",
"variant_id": "<string>"
}
]
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": [
{
"message": "<string>",
"code": "<string>",
"field": "<string>",
"location": "<string>"
}
],
"request_id": "<string>"
}
}⌘I
cURL
curl --request GET \
--url https://api.wazapin.com/v1/commerce/products/{productID}/catalog-mappingsconst options = {method: 'GET'};
fetch('https://api.wazapin.com/v1/commerce/products/{productID}/catalog-mappings', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.wazapin.com/v1/commerce/products/{productID}/catalog-mappings"
response = requests.get(url)
print(response.text){
"items": [
{
"id": "<string>",
"product_id": "<string>",
"retailer_id": "<string>",
"sync_status": "<string>",
"last_sync_error": "<string>",
"last_synced_at": "<string>",
"provider_product_id": "<string>",
"variant_id": "<string>"
}
]
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": [
{
"message": "<string>",
"code": "<string>",
"field": "<string>",
"location": "<string>"
}
],
"request_id": "<string>"
}
}