action akeneo_patch_asset_categories_code { label: "Update/create a PAM asset category" description: "This endpoint allows you to update a given PAM asset category. Know more about Update behavior. Note that if no category exists for the given code, it creates it." provider: akeneo method: PATCH path: "/api/rest/v1/asset-categories/{code}" encoding: json input: { type: "object" properties: { code: { type: "string" } } required: ["code"] additionalProperties: false } output: { type: "object" additionalProperties: true } }