/getaccount
This function allow you to get your account informations
- Endpoint: https://app.fideljet.com/rest/getaccount
- 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/getaccount", 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":{ "balance":5302.4, "currency":"MAD", "email_quota":0, "email":"[email protected]", "company":"Fideljet", "address":"imm2 app2, Rue Tansift, Agdal", "city":"Rabat", "plan":"Premium plan" } }