action akeneo_get_attributes_attribute_code_options_code { label: "Get an attribute option" description: "This endpoint allows you to get the information about a given attribute option." provider: akeneo method: GET path: "/api/rest/v1/attributes/{attribute_code}/options/{code}" encoding: json input: { type: "object" properties: { attribute_code: { type: "string" } code: { type: "string" } } required: ["attribute_code", "code"] additionalProperties: false } output: { type: "object" additionalProperties: true } }