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