GET /v1/commerce/catalog-sync/health
GET
/v1/commerce/catalog-sync/healthAuthorization
bearerAuthbearerAuthrequiredor
apiKeyAuthapiKeyAuthrequiredResponses
200OK
active_productsinteger<int64>requiredfailed_countinteger<int64>requiredhealth_percentinteger<int32>requiredmapped_countinteger<int64>requiredsynced_countinteger<int64>requireddefaultError
errorErrorBodyrequiredShow propertiesHide properties
codestringrequireddetailsErrorDetail[] | nullShow propertiesHide properties
Array of
ErrorDetailcodestringfieldstringlocationstringmessagestringrequiredmessagestringrequiredrequest_idstringRequest
curl -X GET "/v1/commerce/catalog-sync/health"const response = await fetch("/v1/commerce/catalog-sync/health", {
method: "GET"
});import requests
response = requests.get(
"/v1/commerce/catalog-sync/health",
)Response
{
"active_products": 0,
"failed_count": 0,
"health_percent": 0,
"mapped_count": 0,
"synced_count": 0
}{
"error": {
"code": "string",
"details": [
{
"code": "string",
"field": "string",
"location": "string",
"message": "string"
}
],
"message": "string",
"request_id": "string"
}
}