GET /api/enrichment/attribute-templates · Scope: catalog:read
Returns every active attribute template for your organization, each with its options. Fetch this
before enriching — see the guide.
Request
curl https://api.verzla.com/api/enrichment/attribute-templates \
-H "X-Api-Client-Key: sk_live_your_key_here"
No parameters. The organization is resolved from your key.
Response 200
Array of templates.
Template name (e.g. Power Tools).
Option identifier — reference as option.optionId when submitting.
Attribute name (e.g. Voltage).
Unit of measure, or null.
Relative importance; lower is higher priority.
Expected value type, e.g. STRING, NUMBER, BOOLEAN.
Whether the attribute appears on the storefront.
Whether the attribute feeds search and filtering.
[
{
"id": 41,
"name": "Power Tools",
"options": [
{
"id": 880,
"attribute": "Voltage",
"unit": "V",
"priority": 1,
"dataType": "NUMBER",
"showOnWebsite": true,
"isSearchable": true
}
]
}
]
Errors
| Status | When |
|---|
401 | Missing or invalid API key |
403 | Key lacks catalog:read |