Macro per Chiamata webhook

Buongiorno , sto cercando una soluzione per chiamare un webhooks (che salva dei valori su googlesheets tramite una procedura integromat)

attualmente ho inserito il seguente codice:

`sub main
svc = createUnoService( “com.sun.star.sheet.FunctionAccess” ) 'Create a service to use Calc functions
XML_String = svc.callFunction(“WEBSERVICE”,array(“https://hook.integromat.com/da--------tmkmnq1/?par1=ciaoi&par2=test”))
print XML_String
end sub

`

il problema è che è come se effettuasse due chiamate ad ogni esecuzione

XML_String1 = svc.callFunction(“WEBSERVICE”,array(“https://hook.integromat.com/da--------tmkmnq1/?par1=ciaoi&par2=test”))

XML_String2 = svc.callFunction(“WEBSERVICE”, array(OTHER_URL))