action akeneo_get_assets { label: "Get the list of the assets of a given asset family" description: "This endpoint allows you to get a list of assets of a given asset family. Assets are paginated. This endpoint is case sensitive on the asset family code." provider: akeneo method: GET path: "/api/rest/v1/asset-families/{asset_family_code}/assets" encoding: json input: { type: "object" properties: { asset_family_code: { type: "string" } channel: { type: "string" } locales: { type: "string" } search: { type: "string" } search_after: { type: "string" } } required: ["asset_family_code"] additionalProperties: false } output: { type: "object" additionalProperties: true } }