%PDF- %PDF-
Direktori : /home/ugotscom/public_html/maputilities/ |
Current File : /home/ugotscom/public_html/maputilities/supplier.php |
<?php $data = [ "postcode"=> "NG22FY", "hasFuelElec"=> true, "hasFuelGas"=> true, "hasEconomy7Meter"=>false ]; $apiKey = 'znergi-test-key'; $json = json_encode($data); $curl = curl_init(); curl_setopt($curl, CURLOPT_HTTPHEADER, array( 'Content-Type: application/json', 'Authorization: ' . $apiKey, )); curl_setopt($curl, CURLOPT_URL, "https://api-staging.switchcraft.co.uk/api/v1/energy/suppliers"); curl_setopt($curl, CURLOPT_POSTFIELDS, $json); curl_setopt($curl, CURLOPT_RETURNTRANSFER, true); $result = curl_exec($curl); echo $result; curl_close($curl); ?>