curl --request GET \
--url https://api.henrylabs.ai/v0/merchants/{merchantDomain}/status \
--header 'x-api-key: <api-key>'{
"success": true,
"status": "<string>",
"message": "<string>",
"data": {
"merchantSupportStatus": true
}
}Verifies whether a merchant is supported by checking their domain
curl --request GET \
--url https://api.henrylabs.ai/v0/merchants/{merchantDomain}/status \
--header 'x-api-key: <api-key>'{
"success": true,
"status": "<string>",
"message": "<string>",
"data": {
"merchantSupportStatus": true
}
}Merchant domain which is sent in path (replaces :merchantDomain placeholder in path, e.g., 'walmart.com')
1"walmart.com"
Sent as query param. Checkout mode to check merchant support against. 'allowlist' only allows explicitly approved merchants, 'blocklist' allows all except explicitly blocked merchants.
allowlist, blocklist "allowlist"
Was this page helpful?