You can also send HTTP requests across the secured connection with Exact Online using the NativePlatformScalarRequests table. It is available for all platforms and allows you to send native requests. For Exact Online it are HTTP requests, for MySQL it are MySQL-specific SQL statements.
The results are returned as blob or text.
An example to retrieve the logos:
--
-- Request logos.
--
insert into NATIVEPLATFORMSCALARREQUESTS
( url
, blob_preferred
, orig_system_group
, orig_system_reference
)
select act.LogoThumbnailUrl
, true
, 'act'
, 'act-' || to_char(act.id)
from exactonlinerest..accounts@eol act
--
-- Skip default and missing icons.
--
where logothumbnailurl not like '%placeholder%'
and coalesce(length(logothumbnailurl), 0) > 0
--
-- Get the logos.
--
select orig_system_reference
, result_blob
from NATIVEPLATFORMSCALARREQUESTS