API Connect
Connect
curl --location
-H "publicKey : <your_publicKey> "
-H "secretKey : <your_secretKey> "
--request GET https://global.nextpoint.me/next-global/nextpoint/api/connection
$ch = curl_init();
$url = 'https://global.nextpoint.me/next-global/nextpoint/api/connection';
curl_setopt($ch, CURLOPT_URL, $url );
curl_setopt($ch, CURLOPT_HTTPGET, true );
$headers = array(
'publicKey: <your_publicKey>',
'secretKey: <your_secretKey>' );
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers );
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true );
$response = curl_exec($ch);
url_close( $ch );
echo $response;
Name
Value
Last updated