action akeneo_get_reference_entity_records { label: "Get the list of the records of a reference entity" description: "This endpoint allows you to get a list of records of a given reference entity. Records are paginated and can be filtered." provider: akeneo method: GET path: "/api/rest/v1/reference-entities/{reference_entity_code}/records" encoding: json input: { type: "object" properties: { channel: { type: "string" } locales: { type: "string" } reference_entity_code: { type: "string" } search: { type: "string" } search_after: { type: "string" } } required: ["reference_entity_code"] additionalProperties: false } output: { type: "object" additionalProperties: true } }