Enphase local API with firmware 7.x - my setup

rest:
  - headers:
      Authorization: Bearer (token)
    verify_ssl: False
    scan_interval: 60
    resource: https://envoy.local/ivp/meters/readings
    sensor:
      - name: "PVG activePower"
        unique_id: PVG_activePower
        value_template: "{{ value_json[0].activePower | float }}"
        device_class: power
        unit_of_measurement: W
      - name: "PVG Voltage"
        unique_id: PVG_Voltage
        value_template: "{{ value_json[0].voltage }}"
        device_class: voltage
        unit_of_measurement: V
      - name: "PVG actEnergyDlvd"
        unique_id: PVG_actEnergyDlvd
        value_template: "{{ value_json[0].actEnergyDlvd }}"
        device_class: energy
        unit_of_measurement: KW

thanks … work in progress

cannot found any conversie matrix
what is actEnergyDlvd?