action akeneo_patch_asset_code { label: "Update/create an asset" description: "This endpoint allows you to update a given asset of a given asset family. Learn more about the Update behavior. Note that if the asset does not already exist for the given asset family, it creates it. This endpoint is case sensitive on the asset family code." provider: akeneo method: PATCH path: "/api/rest/v1/asset-families/{asset_family_code}/assets/{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 } }