/getbalance
This function allow you to get your account balance, currency, and email remain quota
- Endpoint: https://app.fideljet.com/rest/getbalance
- 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/getbalance", 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, "balance":924.64, "devise":"MAD", "email_quota":9990 }