Created
May 17, 2024 20:43
-
-
Save luukverhoeven/ee0363f020355d20d2d0e98c48d5698e to your computer and use it in GitHub Desktop.
api.bigregister.nl GetRibizReferenceData
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function GetRibizReferenceData() { | |
$wsdl = "https://api.bigregister.nl/zksrv/soap/4?wsdl"; // WSDL URL for the web service | |
try { | |
$client = new SoapClient($wsdl, array('trace' => 1)); | |
$params = new stdClass(); | |
$response = $client->__soapCall("GetRibizReferenceData", array($params)); | |
return $response; | |
} catch (SoapFault $fault) { | |
// Handle errors here | |
echo "Error: ", $fault->faultcode, ", string: ", $fault->faultstring; | |
} | |
} | |
$response = GetRibizReferenceData($requestParams); | |
print_r($response); | |
Author
luukverhoeven
commented
May 17, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment