/getrewards
This function allows you to get your rewards list.
- Endpoint: https://app.fideljet.com/rest/getrewards
- Type: Post
- Var: apikey
Here is a PHP example:
<?php $apikey = "YOUR_API_KEY"; // APi Key https://app.Fideljet.com/profil then apikey section $curl = curl_init(); curl_setopt_array($curl, array( CURLOPT_URL => "https://app.fideljet.com/rest/getrewards", 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\" }", 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":{ "rewards":[ {"Reward":{ "id":"366", "name":"Reward1", "points":"10", "img":"" } }, {"Reward":{ "id":"367", "name":"Reward2", "points":"200", "img":"" } } ] } }