(JavaScript) SimpleTexting - Check Remaining Credits
Retrieve your remaining credit balance for the current billing cycle. For more information, see https://simpletexting.com/api/docs/#operation/checkRemainingCreditsGet
var success = false;
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
var http = new CkHttp();
// Implements the following CURL command:
// curl --request GET \
// --url 'https://app2.simpletexting.com/v1/messaging/check?token=YOUR_API_TOKEN' \
// --header 'accept: application/json'
// Use the following online tool to generate HTTP code from a CURL command
// Convert a cURL Command to HTTP Source Code
http.SetRequestHeader("accept","application/json");
var sbResponseBody = new CkStringBuilder();
success = http.QuickGetSb("https://app2.simpletexting.com/v1/messaging/check?token=YOUR_API_TOKEN",sbResponseBody);
if (success == false) {
console.log(http.LastErrorText);
return;
}
var jResp = new CkJsonObject();
jResp.LoadSb(sbResponseBody);
jResp.EmitCompact = false;
console.log("Response Body:");
console.log(jResp.Emit());
var respStatusCode = http.LastStatus;
console.log("Response Status Code = " + respStatusCode);
if (respStatusCode >= 400) {
console.log("Response Header:");
console.log(http.LastHeader);
console.log("Failed.");
return;
}
// Sample JSON response:
// (Sample code for parsing the JSON response is shown below)
// {
// "code": 1,
// "message": "The request succeeded",
// "messagesCount": 2989
// }
// Sample code for parsing the JSON response...
// Use the following online tool to generate parsing code from sample JSON:
// Generate Parsing Code from JSON
var code = jResp.IntOf("code");
var message = jResp.StringOf("message");
var messagesCount = jResp.IntOf("messagesCount");
|