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