Update a custom attribute

POST https://api.tamio.com/v2/products/custom-attributes/update/{uuid}

Path Parameters

uuid string*

Body Parameters

label object*

Multilingual labels (1–10 languages, up to 128 chars each)

text boolean*
link boolean*
image boolean*
feature boolean*

Responses

200 Custom attribute updated successfully

Custom attribute updated successfully

status integer
custom_attribute CustomAttribute
400 Bad request. Possible `error_code` values:
401 Missing or invalid API key
/products/custom-attributes/update/{uuid}
1const response = await fetch("https://api.tamio.com/v2/products/custom-attributes/update/{uuid}", {
2 method: "POST",
3 headers: {
4 "Authorization": "Bearer YOUR_API_KEY",
5 "Content-Type": "application/json"
6 },
7 body: JSON.stringify({
8 // ... request body
9 })
10});
11const data = await response.json();
Responses
{
  "status": 200,
  "custom_attribute": {
    "id": "string",
    "label": {},
    "text": false,
    "link": false,
    "image": false,
    "feature": false
  }
}