action akeneo_get_reference_entity_records_code { label: "Get a record of a given reference entity" description: "This endpoint allows you to get the information about a given record for a given reference entity." provider: akeneo method: GET path: "/api/rest/v1/reference-entities/{reference_entity_code}/records/{code}" encoding: json input: { type: "object" properties: { code: { type: "string" } reference_entity_code: { type: "string" } } required: ["code", "reference_entity_code"] additionalProperties: false } output: { type: "object" additionalProperties: true } }