action akeneo_get_attributes_attribute_code_options { label: "Get list of attribute options" description: "This endpoint allows you to get a list of attribute options. Attribute options are paginated and sorted by code." provider: akeneo method: GET path: "/api/rest/v1/attributes/{attribute_code}/options" encoding: json input: { type: "object" properties: { attribute_code: { type: "string" } limit: { type: "string" } page: { type: "string" } with_count: { type: "string" } } required: ["attribute_code"] additionalProperties: false } output: { type: "object" additionalProperties: true } }