action akeneo_patch_asset_family_attributes_code { label: "Update/create an attribute of a given asset family" description: "This endpoint allows you to update a given attribute for a given asset family. Note that if the attribute does not already exist for the given asset family, it creates it." provider: akeneo method: PATCH path: "/api/rest/v1/asset-families/{asset_family_code}/attributes/{code}" encoding: json input: { type: "object" properties: { asset_family_code: { type: "string" } code: { type: "string" } } required: ["asset_family_code", "code"] additionalProperties: false } output: { type: "object" additionalProperties: true } }