Parameters

attribute
dictionary
value
dictionary
PUT/v1/attributes/{{attribute_id}}/values/{{attribute_value_id}}
curl https://api.tradly.app/v1/attributes/{{attribute_id}}/values/{{attribute_value_id}} \
  -H "Authorization: Bearer YOUR_PUBLISHABLE_OR_SECRET_KEY" \
  -H "Content-Type: application/json" \
  -X PUT \
  -d '{
  "attribute": {
    "value": {
      "name": "10 GB",
      "active": false
    }
  }
}'
RESPONSE
{
  "status": true,
  "data": {
    "attribute": {
      "id": 1
    }
  }
}