/addreward
This function allows to add new rewards.
- Endpoint: https://app.fideljet.com/rest/addreward
- Type: Post
apikey | API KEY | You can get it from your profil https://app.Fideljet.com/profil then apikey section |
name | Reward name | Reward name |
points | Reward points | the number of points needed to get the reward |
Here is a PHP exemple:
<?php $curl = curl_init(); $apikey = "YOUR_API_KEY"; $name = "Reward Name"; // Reward name $points= "100"; // the number of points needed to get the reward curl_setopt_array($curl, array( CURLOPT_URL => "https://app.fideljet.com/rest/addreward", 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\",\"name\":\"$name\",\"points\":\"$points\"}", 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":{ "reward_id":"434" } }