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