/getbalance
This function allows you to get your lists informations.
- Endpoint: https://app.fideljet.com/rest/getlists
- 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/getlists", 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":{ "lists":[ { "List":{ "id":"728", "name":"List 1", "description":"first list", "permanent":"0", "created":"2018-04-22 18:25:04", "updated":"2018-04-22 18:25:04" } }, { "List":{ "id":"471", "name":"Default", "description":"default list", "permanent":"1", "created":"2018-04-21 10:32:44", "updated":"2018-04-25 13:47:22" } } ] } }