Remote AdGuard (not add-on) enable_url and disable_url

I have one AdGuard running as a local HA add-on and another on external IP.
I set up the second AdGuard as a new integration (Settings > Integrations … > Add integration).
I can turn on and off all the basic settings, but I fail to set the custom filtering features (enable_url and disable_url) for the remote AG the same way as they work on local one.

I use these automations and suppose that problem is in the service parameter

- id: enable_youtube
  alias: Enable Youtube
  hide_entity: true
  initial_state: 'on'
  trigger:
    platform: state
    entity_id: input_boolean.allowyoutube
    to: 'on'
  action:
  - service: adguard.disable_url
    data:
      url: https://raw.githubusercontent.com/gieljnssns/Social-media-Blocklists/master/adguard-youtube.txt

- id: disable_youtube
  alias: Disable Youtube
  hide_entity: true
  initial_state: 'on'
  trigger:
    platform: state
    entity_id: input_boolean.allowyoutube
    to: 'off'
  action:
  - service: adguard.enable_url
    data:
      url: https://raw.githubusercontent.com/gieljnssns/Social-media-Blocklists/master/adguard-youtube.txt