/getcontactpoints
This function allows to get contact’s number of points.
- Endpoint: https://app.fideljet.com/rest/getcontactpoints
- Type: Post
apikey | API KEY | You can get it from your profil https://app.Fideljet.com/profil then apikey section |
Email address | Contact email address, mandatory if mobile value is empty | |
mobile | Mobile | Contact mobile phone mandatory if email value is empty |
Here is a PHP exemple:
<?php $curl = curl_init(); $apikey = "YOUR_API_KEY"; $email = "[email protected]"; // Email address $mobile = "+3300000000"; // International mobile format with + curl_setopt_array($curl, array( CURLOPT_URL => "https://app.fideljet.com/rest/getcontactpoints", CURLOPT_RETURNTRANSFER => true, CURLOPT_ENCODING => "", CURLOPT_MAXREDIRS => 10, CURLOPT_TIMEOUT => 30, CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1, CURLOPT_CUSTOMREQUEST => "POST", CURLOPT_POSTFIELDS => "{ \"apikey\":\"$apikey\",\"email\":\"$email\",\"mobile\":\"$mobile\"}", CURLOPT_HTTPHEADER => array( "accept: application/json", "content-type: application/json" ), )); $response = curl_exec($curl); $err = curl_error($curl); curl_close($curl); if ($err) { echo "cURL Error #:" . $err; } else { echo $response; } ?>
Résultat:
{ "message":"Success", "success":true, "data":{ "contact":[ { "Contact":{ "points":"6", "montant":600 } } ] } }