action akeneo_post_attributes_attribute_code_options { label: "Create a new attribute option" description: "This endpoint allows you to create a new attribute option." provider: akeneo method: POST path: "/api/rest/v1/attributes/{attribute_code}/options" encoding: json input: { type: "object" properties: { attribute_code: { type: "string" } } required: ["attribute_code"] additionalProperties: false } output: { type: "object" additionalProperties: true } }