Download OpenAPI specification:
Attribute definitions, groups, and options.
List all attribute groups with pagination
| page | integer Default: 1 Page number |
| page_size | integer Default: 20 Page size |
| search | string Search term for code or name |
| status | string Filter by status |
{- "data": {
- "items": [
- {
- "attribute_count": 12,
- "code": "TECHNICAL",
- "created_at": "2026-01-18T10:30:00Z",
- "created_by": {
- "id": "550e8400-e29b-41d4-a716-446655440000",
- "name": "John Doe",
- "type": "user"
}, - "id": "5",
- "modified_at": "2026-01-18T15:45:00Z",
- "modified_by": {
- "id": "550e8400-e29b-41d4-a716-446655440000",
- "name": "John Doe",
- "type": "user"
}, - "name": "Technical Specifications",
- "sort_order": 1,
- "status": "active"
}
], - "pagination": {
- "has_next": true,
- "page": 0,
- "page_size": 0,
- "total_items": 0,
- "total_pages": 0
}
}, - "success": true
}Create a new attribute group
Attribute group creation request
| code required | string [ 1 .. 64 ] characters |
| description | string <= 255 characters |
| name required | string [ 1 .. 255 ] characters |
| sort_order | integer >= 0 |
{- "code": "TECHNICAL",
- "description": "Technical attribute group",
- "name": "Technical Specifications",
- "sort_order": 1
}{- "data": {
- "attribute_count": 12,
- "code": "TECHNICAL",
- "created_at": "2026-01-18T10:30:00Z",
- "created_by": {
- "id": "550e8400-e29b-41d4-a716-446655440000",
- "name": "John Doe",
- "type": "user"
}, - "description": "Technical attribute group",
- "id": "5",
- "modified_at": "2026-01-18T15:45:00Z",
- "modified_by": {
- "id": "550e8400-e29b-41d4-a716-446655440000",
- "name": "John Doe",
- "type": "user"
}, - "name": "Technical Specifications",
- "sort_order": 1,
- "status": "active"
}, - "success": true
}Retrieve a single attribute group by its unique identifier
| id required | string Attribute Group ID |
{- "data": {
- "attribute_count": 12,
- "code": "TECHNICAL",
- "created_at": "2026-01-18T10:30:00Z",
- "created_by": {
- "id": "550e8400-e29b-41d4-a716-446655440000",
- "name": "John Doe",
- "type": "user"
}, - "description": "Technical attribute group",
- "id": "5",
- "modified_at": "2026-01-18T15:45:00Z",
- "modified_by": {
- "id": "550e8400-e29b-41d4-a716-446655440000",
- "name": "John Doe",
- "type": "user"
}, - "name": "Technical Specifications",
- "sort_order": 1,
- "status": "active"
}, - "success": true
}Delete an attribute group by ID
| id required | string Attribute Group ID |
{- "errors": [
- {
- "code": "string",
- "field": "string",
- "message": "string"
}
], - "message": "string",
- "success": true
}Update an existing attribute group by ID
| id required | string Attribute Group ID |
Attribute group update request
| description | string |
| name | string [ 1 .. 255 ] characters |
| sort_order | integer >= 0 |
{- "description": "Updated description",
- "name": "Technical Specifications",
- "sort_order": 1
}{- "data": {
- "attribute_count": 12,
- "code": "TECHNICAL",
- "created_at": "2026-01-18T10:30:00Z",
- "created_by": {
- "id": "550e8400-e29b-41d4-a716-446655440000",
- "name": "John Doe",
- "type": "user"
}, - "description": "Technical attribute group",
- "id": "5",
- "modified_at": "2026-01-18T15:45:00Z",
- "modified_by": {
- "id": "550e8400-e29b-41d4-a716-446655440000",
- "name": "John Doe",
- "type": "user"
}, - "name": "Technical Specifications",
- "sort_order": 1,
- "status": "active"
}, - "success": true
}Change an attribute group's status (activate or deactivate)
| id required | string Attribute Group ID |
Status change request
| status required | string Enum: "active" "inactive" |
{- "status": "active"
}{- "data": {
- "attribute_count": 12,
- "code": "TECHNICAL",
- "created_at": "2026-01-18T10:30:00Z",
- "created_by": {
- "id": "550e8400-e29b-41d4-a716-446655440000",
- "name": "John Doe",
- "type": "user"
}, - "description": "Technical attribute group",
- "id": "5",
- "modified_at": "2026-01-18T15:45:00Z",
- "modified_by": {
- "id": "550e8400-e29b-41d4-a716-446655440000",
- "name": "John Doe",
- "type": "user"
}, - "name": "Technical Specifications",
- "sort_order": 1,
- "status": "active"
}, - "success": true
}Retrieve all localized translations for a specific attribute group
| id required | string Attribute Group ID |
{- "data": {
- "items": [
- {
- "created_at": "2026-01-18T10:30:00Z",
- "locale": "en_US",
- "modified_at": "2026-01-18T15:45:00Z",
- "name": "Technical Specifications"
}
]
}, - "success": true
}PATCH: Update multiple translations for an attribute group
| id required | string Attribute Group ID |
Translations data
required | Array of objects (AttributeGroupTranslationInput) |
{- "translations": [
- {
- "locale": "en_US",
- "name": "Technical Specifications"
}
]
}{- "data": {
- "items": [
- {
- "created_at": "2026-01-18T10:30:00Z",
- "locale": "en_US",
- "modified_at": "2026-01-18T15:45:00Z",
- "name": "Technical Specifications"
}
]
}, - "success": true
}List all attributes with pagination and filtering
| page | integer Default: 1 Page number |
| page_size | integer Default: 20 Page size |
| search | string Search term for code or name |
| attribute_type | string Filter by attribute type |
| status | string Filter by status |
{- "data": {
- "items": [
- {
- "attribute_group": {
- "code": "TECHNICAL",
- "id": "5",
- "name": "Technical"
}, - "attribute_type": "select",
- "code": "COLOR",
- "created_at": "2026-01-18T10:30:00Z",
- "created_by": {
- "id": "550e8400-e29b-41d4-a716-446655440000",
- "name": "John Doe",
- "type": "user"
}, - "id": "15",
- "is_unique": false,
- "modified_at": "2026-01-18T15:45:00Z",
- "modified_by": {
- "id": "550e8400-e29b-41d4-a716-446655440000",
- "name": "John Doe",
- "type": "user"
}, - "name": "Color",
- "sort_order": 1,
- "status": "active",
- "value_per_channel": false,
- "value_per_locale": true
}
], - "pagination": {
- "has_next": true,
- "page": 0,
- "page_size": 0,
- "total_items": 0,
- "total_pages": 0
}
}, - "success": true
}Create a new attribute
Attribute creation request
| attribute_group_id | string non-empty |
| attribute_type required | string Enum: "text" "text_area" "number" "price" "select" "multi_select" "measurement" "media" "media_group" "boolean" "date" "date_range" "file" "location" "link" "identifier" "tax_class" |
| code required | string <= 50 characters |
object | |
| description | string <= 1000 characters |
| is_unique | boolean |
| name required | string <= 255 characters |
| sort_order | integer >= 0 |
| value_per_channel | boolean |
| value_per_locale | boolean |
{- "attribute_group_id": "5",
- "attribute_type": "select",
- "code": "COLOR",
- "config": { },
- "description": "Product color attribute",
- "is_unique": false,
- "name": "Color",
- "sort_order": 1,
- "value_per_channel": false,
- "value_per_locale": true
}{- "data": {
- "attribute_group": {
- "code": "TECHNICAL",
- "id": "5",
- "name": "Technical"
}, - "attribute_type": "select",
- "code": "COLOR",
- "config": { },
- "created_at": "2026-01-18T10:30:00Z",
- "created_by": {
- "id": "550e8400-e29b-41d4-a716-446655440000",
- "name": "John Doe",
- "type": "user"
}, - "description": "Product color attribute",
- "id": "15",
- "is_unique": false,
- "modified_at": "2026-01-18T15:45:00Z",
- "modified_by": {
- "id": "550e8400-e29b-41d4-a716-446655440000",
- "name": "John Doe",
- "type": "user"
}, - "name": "Color",
- "sort_order": 1,
- "status": "active",
- "value_per_channel": false,
- "value_per_locale": true
}, - "success": true
}Retrieve a single attribute by its unique identifier
| id required | string Attribute ID |
{- "data": {
- "attribute_group": {
- "code": "TECHNICAL",
- "id": "5",
- "name": "Technical"
}, - "attribute_type": "select",
- "code": "COLOR",
- "config": { },
- "created_at": "2026-01-18T10:30:00Z",
- "created_by": {
- "id": "550e8400-e29b-41d4-a716-446655440000",
- "name": "John Doe",
- "type": "user"
}, - "description": "Product color attribute",
- "id": "15",
- "is_unique": false,
- "modified_at": "2026-01-18T15:45:00Z",
- "modified_by": {
- "id": "550e8400-e29b-41d4-a716-446655440000",
- "name": "John Doe",
- "type": "user"
}, - "name": "Color",
- "sort_order": 1,
- "status": "active",
- "value_per_channel": false,
- "value_per_locale": true
}, - "success": true
}Update an existing attribute by ID
| id required | string Attribute ID |
Attribute update request
| attribute_group_id | string non-empty |
| attribute_type | string Enum: "text" "text_area" "number" "price" "select" "multi_select" "measurement" "media" "media_group" "boolean" "date" "date_range" "file" "location" "link" "identifier" "tax_class" |
| code | string <= 50 characters |
object | |
| description | string <= 1000 characters |
| is_unique | boolean |
| name | string <= 255 characters |
| sort_order | integer >= 0 |
| value_per_channel | boolean |
| value_per_locale | boolean |
{- "attribute_group_id": "5",
- "attribute_type": "select",
- "code": "COLOR",
- "config": { },
- "description": "Updated product color",
- "is_unique": false,
- "name": "Color",
- "sort_order": 1,
- "value_per_channel": false,
- "value_per_locale": true
}{- "data": {
- "attribute_group": {
- "code": "TECHNICAL",
- "id": "5",
- "name": "Technical"
}, - "attribute_type": "select",
- "code": "COLOR",
- "config": { },
- "created_at": "2026-01-18T10:30:00Z",
- "created_by": {
- "id": "550e8400-e29b-41d4-a716-446655440000",
- "name": "John Doe",
- "type": "user"
}, - "description": "Product color attribute",
- "id": "15",
- "is_unique": false,
- "modified_at": "2026-01-18T15:45:00Z",
- "modified_by": {
- "id": "550e8400-e29b-41d4-a716-446655440000",
- "name": "John Doe",
- "type": "user"
}, - "name": "Color",
- "sort_order": 1,
- "status": "active",
- "value_per_channel": false,
- "value_per_locale": true
}, - "success": true
}Change an attribute's status (activate or deactivate)
| id required | string Attribute ID |
Status change request
| status required | string Enum: "active" "inactive" |
{- "status": "active"
}{- "data": {
- "attribute_group": {
- "code": "TECHNICAL",
- "id": "5",
- "name": "Technical"
}, - "attribute_type": "select",
- "code": "COLOR",
- "config": { },
- "created_at": "2026-01-18T10:30:00Z",
- "created_by": {
- "id": "550e8400-e29b-41d4-a716-446655440000",
- "name": "John Doe",
- "type": "user"
}, - "description": "Product color attribute",
- "id": "15",
- "is_unique": false,
- "modified_at": "2026-01-18T15:45:00Z",
- "modified_by": {
- "id": "550e8400-e29b-41d4-a716-446655440000",
- "name": "John Doe",
- "type": "user"
}, - "name": "Color",
- "sort_order": 1,
- "status": "active",
- "value_per_channel": false,
- "value_per_locale": true
}, - "success": true
}List all attribute options for a specific attribute with pagination
| attributeId required | string Attribute ID |
| page | integer Default: 1 Page number |
| page_size | integer Default: 20 Page size |
| search | string Search term for option |
{- "data": {
- "items": [
- {
- "attribute_id": "15",
- "code": "#FF0000",
- "created_at": "2026-01-18T10:30:00Z",
- "created_by": {
- "id": "550e8400-e29b-41d4-a716-446655440000",
- "name": "John Doe",
- "type": "user"
}, - "id": "25",
- "label": "Red",
- "modified_at": "2026-01-18T15:45:00Z",
- "modified_by": {
- "id": "550e8400-e29b-41d4-a716-446655440000",
- "name": "John Doe",
- "type": "user"
}, - "translations": [
- {
- "label": "Red",
- "locale": "en_US"
}
]
}
], - "pagination": {
- "has_next": true,
- "page": 0,
- "page_size": 0,
- "total_items": 0,
- "total_pages": 0
}
}, - "success": true
}Create a new attribute option for a specific attribute
| attributeId required | string Attribute ID |
Attribute option creation request
| code required | string |
| label required | string |
{- "code": "#FF0000",
- "label": "Red"
}{- "data": {
- "attribute_id": "15",
- "code": "#FF0000",
- "created_at": "2026-01-18T10:30:00Z",
- "created_by": {
- "id": "550e8400-e29b-41d4-a716-446655440000",
- "name": "John Doe",
- "type": "user"
}, - "id": "25",
- "label": "Red",
- "modified_at": "2026-01-18T15:45:00Z",
- "modified_by": {
- "id": "550e8400-e29b-41d4-a716-446655440000",
- "name": "John Doe",
- "type": "user"
}, - "translations": [
- {
- "label": "Red",
- "locale": "en_US"
}
]
}, - "success": true
}Retrieve a single attribute option by its unique identifier
| attributeId required | string Attribute ID |
| id required | string Attribute Option ID |
{- "data": {
- "attribute_id": "15",
- "code": "#FF0000",
- "created_at": "2026-01-18T10:30:00Z",
- "created_by": {
- "id": "550e8400-e29b-41d4-a716-446655440000",
- "name": "John Doe",
- "type": "user"
}, - "id": "25",
- "label": "Red",
- "modified_at": "2026-01-18T15:45:00Z",
- "modified_by": {
- "id": "550e8400-e29b-41d4-a716-446655440000",
- "name": "John Doe",
- "type": "user"
}, - "translations": [
- {
- "label": "Red",
- "locale": "en_US"
}
]
}, - "success": true
}Delete an attribute option by ID
| attributeId required | string Attribute ID |
| id required | string Attribute Option ID |
{- "errors": [
- {
- "code": "string",
- "field": "string",
- "message": "string"
}
], - "message": "string",
- "success": true
}Update an existing attribute option by ID
| attributeId required | string Attribute ID |
| id required | string Attribute Option ID |
Attribute option update request
| code required | string |
| label required | string |
{- "code": "#FF0000",
- "label": "Red"
}{- "data": {
- "attribute_id": "15",
- "code": "#FF0000",
- "created_at": "2026-01-18T10:30:00Z",
- "created_by": {
- "id": "550e8400-e29b-41d4-a716-446655440000",
- "name": "John Doe",
- "type": "user"
}, - "id": "25",
- "label": "Red",
- "modified_at": "2026-01-18T15:45:00Z",
- "modified_by": {
- "id": "550e8400-e29b-41d4-a716-446655440000",
- "name": "John Doe",
- "type": "user"
}, - "translations": [
- {
- "label": "Red",
- "locale": "en_US"
}
]
}, - "success": true
}Retrieve all localized translations for a specific attribute option
| attributeId required | string Attribute ID |
| id required | string Attribute Option ID |
{- "data": {
- "items": [
- {
- "created_at": "2026-01-18T10:30:00Z",
- "label": "Red",
- "locale": "en_US",
- "modified_at": "2026-01-18T15:45:00Z"
}
]
}, - "success": true
}PATCH: Update multiple translations for an attribute option
| attributeId required | string Attribute ID |
| id required | string Attribute Option ID |
Translations data
required | Array of objects (AttributeOptionTranslationInput) |
{- "translations": [
- {
- "label": "Red",
- "locale": "en_US"
}
]
}{- "data": {
- "items": [
- {
- "created_at": "2026-01-18T10:30:00Z",
- "label": "Red",
- "locale": "en_US",
- "modified_at": "2026-01-18T15:45:00Z"
}
]
}, - "success": true
}Retrieve all localized translations for a specific attribute
| id required | string Attribute ID |
{- "data": {
- "items": [
- {
- "created_at": "2026-01-18T10:30:00Z",
- "locale": "en_US",
- "modified_at": "2026-01-18T15:45:00Z",
- "name": "Color"
}
]
}, - "success": true
}PATCH: Update multiple translations for an attribute
| id required | string Attribute ID |
Translations data
required | Array of objects (AttributeTranslationInput) |
{- "translations": [
- {
- "locale": "en_US",
- "name": "Color"
}
]
}{- "data": {
- "items": [
- {
- "created_at": "2026-01-18T10:30:00Z",
- "locale": "en_US",
- "modified_at": "2026-01-18T15:45:00Z",
- "name": "Color"
}
]
}, - "success": true
}List all UOM families with pagination and filtering
| page | integer Default: 1 Page number |
| page_size | integer Default: 10 Page size |
| status | string Filter by status |
| search | string Search term for code or name |
{- "data": {
- "items": [
- {
- "base_uom_id": "3",
- "code": "WEIGHT",
- "created_at": "2026-01-18T10:30:00Z",
- "id": "1",
- "modified_at": "2026-01-18T15:45:00Z",
- "name": "Weight",
- "status": "active",
- "uom_count": 5
}
], - "pagination": {
- "has_next": true,
- "page": 0,
- "page_size": 0,
- "total_items": 0,
- "total_pages": 0
}
}, - "success": true
}Create a new unit of measure family with optional base UOM
UOM family creation request
object (BaseUOMRequest) | |
| code required | string [ 1 .. 64 ] characters |
| description | string <= 255 characters |
| name required | string [ 1 .. 255 ] characters |
{- "base_uom": {
- "code": "KG",
- "name": "Kilogram",
- "symbol": "kg"
}, - "code": "WEIGHT",
- "description": "Weight measurement units",
- "name": "Weight"
}{- "data": {
- "base_uom_id": "3",
- "code": "WEIGHT",
- "created_at": "2026-01-18T10:30:00Z",
- "description": "Weight measurement units",
- "id": "1",
- "modified_at": "2026-01-18T15:45:00Z",
- "name": "Weight",
- "status": "active",
- "uom_count": 5
}, - "success": true
}Retrieve a single UOM family by its unique identifier
| id required | string UOM Family ID |
{- "data": {
- "base_uom_id": "3",
- "code": "WEIGHT",
- "created_at": "2026-01-18T10:30:00Z",
- "description": "Weight measurement units",
- "id": "1",
- "modified_at": "2026-01-18T15:45:00Z",
- "name": "Weight",
- "status": "active",
- "uom_count": 5
}, - "success": true
}Update an existing UOM family by ID
| id required | string UOM Family ID |
UOM family update request
| description | string |
| name | string [ 1 .. 255 ] characters |
{- "description": "Updated description",
- "name": "Weight"
}{- "data": {
- "base_uom_id": "3",
- "code": "WEIGHT",
- "created_at": "2026-01-18T10:30:00Z",
- "description": "Weight measurement units",
- "id": "1",
- "modified_at": "2026-01-18T15:45:00Z",
- "name": "Weight",
- "status": "active",
- "uom_count": 5
}, - "success": true
}Change a UOM family's status (activate or deactivate)
| id required | string UOM Family ID |
Status change request
| status required | string Enum: "active" "inactive" |
{- "status": "active"
}{- "data": {
- "base_uom_id": "3",
- "code": "WEIGHT",
- "created_at": "2026-01-18T10:30:00Z",
- "description": "Weight measurement units",
- "id": "1",
- "modified_at": "2026-01-18T15:45:00Z",
- "name": "Weight",
- "status": "active",
- "uom_count": 5
}, - "success": true
}Retrieve all localized translations for a specific UOM family
| id required | string UOM Family ID |
{- "data": {
- "items": [
- {
- "created_at": "2026-01-18T10:30:00Z",
- "locale": "en_US",
- "modified_at": "2026-01-18T15:45:00Z",
- "name": "Weight"
}
]
}, - "success": true
}PATCH: Update multiple translations for a UOM family
| id required | string UOM Family ID |
Translations data
required | Array of objects (UOMFamilyTranslationInput) |
{- "translations": [
- {
- "locale": "en_US",
- "name": "Weight"
}
]
}{- "data": {
- "items": [
- {
- "created_at": "2026-01-18T10:30:00Z",
- "locale": "en_US",
- "modified_at": "2026-01-18T15:45:00Z",
- "name": "Weight"
}
]
}, - "success": true
}List all units of measure with pagination and filtering
| page | integer Default: 1 Page number |
| page_size | integer Default: 20 Page size |
| search | string Search term for code or name |
| uom_family_id | string Filter by UOM family ID |
| status | string Filter by status |
{- "data": {
- "items": [
- {
- "code": "KG",
- "conversion_factor": 1,
- "conversion_offset": 0,
- "created_at": "2026-01-18T10:30:00Z",
- "id": "3",
- "is_base_unit": true,
- "modified_at": "2026-01-18T15:45:00Z",
- "name": "Kilogram",
- "status": "active",
- "symbol": "kg",
- "translations": [
- {
- "locale": "en_US",
- "name": "Kilogram"
}
], - "uom_family": {
- "code": "WEIGHT",
- "id": "1",
- "name": "Weight"
}, - "uom_family_id": "1"
}
], - "pagination": {
- "has_next": true,
- "page": 0,
- "page_size": 0,
- "total_items": 0,
- "total_pages": 0
}
}, - "success": true
}Create a new unit of measure
UOM creation request
| code required | string [ 1 .. 64 ] characters |
| conversion_factor required | number |
| conversion_offset | number |
| description | string <= 255 characters |
| is_base | boolean |
| name required | string [ 1 .. 255 ] characters |
| symbol required | string [ 1 .. 32 ] characters |
| uom_family_id required | string |
{- "code": "KG",
- "conversion_factor": 1,
- "conversion_offset": 0,
- "description": "Unit of mass",
- "is_base": true,
- "name": "Kilogram",
- "symbol": "kg",
- "uom_family_id": "1"
}{- "data": {
- "code": "KG",
- "conversion_factor": 1,
- "conversion_offset": 0,
- "created_at": "2026-01-18T10:30:00Z",
- "description": "Unit of mass",
- "id": "3",
- "is_base_unit": true,
- "modified_at": "2026-01-18T15:45:00Z",
- "name": "Kilogram",
- "status": "active",
- "symbol": "kg",
- "translations": [
- {
- "locale": "en_US",
- "name": "Kilogram"
}
], - "uom_family": {
- "code": "WEIGHT",
- "id": "1",
- "name": "Weight"
}, - "uom_family_id": "1"
}, - "success": true
}Retrieve a single unit of measure by its unique identifier
| id required | string UOM ID |
{- "data": {
- "code": "KG",
- "conversion_factor": 1,
- "conversion_offset": 0,
- "created_at": "2026-01-18T10:30:00Z",
- "description": "Unit of mass",
- "id": "3",
- "is_base_unit": true,
- "modified_at": "2026-01-18T15:45:00Z",
- "name": "Kilogram",
- "status": "active",
- "symbol": "kg",
- "translations": [
- {
- "locale": "en_US",
- "name": "Kilogram"
}
], - "uom_family": {
- "code": "WEIGHT",
- "id": "1",
- "name": "Weight"
}, - "uom_family_id": "1"
}, - "success": true
}Update an existing unit of measure by ID
| id required | string UOM ID |
UOM update request
| conversion_factor | number |
| conversion_offset | number |
| description | string |
| name | string [ 1 .. 255 ] characters |
| symbol | string [ 1 .. 32 ] characters |
{- "conversion_factor": 1,
- "conversion_offset": 0,
- "description": "Updated unit of mass",
- "name": "Kilogram",
- "symbol": "kg"
}{- "data": {
- "code": "KG",
- "conversion_factor": 1,
- "conversion_offset": 0,
- "created_at": "2026-01-18T10:30:00Z",
- "description": "Unit of mass",
- "id": "3",
- "is_base_unit": true,
- "modified_at": "2026-01-18T15:45:00Z",
- "name": "Kilogram",
- "status": "active",
- "symbol": "kg",
- "translations": [
- {
- "locale": "en_US",
- "name": "Kilogram"
}
], - "uom_family": {
- "code": "WEIGHT",
- "id": "1",
- "name": "Weight"
}, - "uom_family_id": "1"
}, - "success": true
}Change a UOM's status (activate or deactivate)
| id required | string UOM ID |
Status change request
| status required | string Enum: "active" "inactive" |
{- "status": "active"
}{- "data": {
- "code": "KG",
- "conversion_factor": 1,
- "conversion_offset": 0,
- "created_at": "2026-01-18T10:30:00Z",
- "description": "Unit of mass",
- "id": "3",
- "is_base_unit": true,
- "modified_at": "2026-01-18T15:45:00Z",
- "name": "Kilogram",
- "status": "active",
- "symbol": "kg",
- "translations": [
- {
- "locale": "en_US",
- "name": "Kilogram"
}
], - "uom_family": {
- "code": "WEIGHT",
- "id": "1",
- "name": "Weight"
}, - "uom_family_id": "1"
}, - "success": true
}Retrieve all localized translations for a specific UOM
| id required | string UOM ID |
{- "data": {
- "items": [
- {
- "created_at": "2026-01-18T10:30:00Z",
- "locale": "en_US",
- "modified_at": "2026-01-18T15:45:00Z",
- "name": "Kilogram"
}
]
}, - "success": true
}PATCH: Update multiple translations for a UOM
| id required | string UOM ID |
Translations data
required | Array of objects (UOMTranslationInput) |
{- "translations": [
- {
- "locale": "en_US",
- "name": "Kilogram"
}
]
}{- "data": {
- "items": [
- {
- "created_at": "2026-01-18T10:30:00Z",
- "locale": "en_US",
- "modified_at": "2026-01-18T15:45:00Z",
- "name": "Kilogram"
}
]
}, - "success": true
}