FacetFlux
pim.attributeDefinitions.aliases.set
Replace the attribute definition's alias list. Aliases are alternate names used during import matching (e.g. 'Gewicht' as a German alias for 'weight'). Pass [] to clear. Response: { attributeDefinitionId, aliases }. Errors: { error: { code: 'not_found', ... } }.
Remote revuo:facetflux
Other tools also called pim.attributeDefinitions.aliases.set?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"attributeDefinitionId": {
"description": "Attribute definition id.",
"type": "string"
},
"aliases": {
"description": "Alias list. Replaces the existing list. Empty array clears.",
"type": "array",
"items": {
"type": "string"
}
}
},
"required": [
"attributeDefinitionId",
"aliases"
]
}