Sample code for 30+ languages & platforms
Swift

SimpleTexting - Check Remaining Credits

See more SimpleTexting Examples

Retrieve your remaining credit balance for the current billing cycle.

Chilkat Swift Downloads

Swift

func chilkatTest() {
    var success: Bool = false

    // This example assumes the Chilkat API to have been previously unlocked.
    // See Global Unlock Sample for sample code.

    let http = CkoHttp()!

    // 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(name: "accept", value: "application/json")

    let sbResponseBody = CkoStringBuilder()!
    success = http.quickGetSb(url: "https://app2.simpletexting.com/v1/messaging/check?token=YOUR_API_TOKEN", sbContent: sbResponseBody)
    if success == false {
        print("\(http.lastErrorText!)")
        return
    }

    let jResp = CkoJsonObject()!
    jResp.loadSb(sb: sbResponseBody)
    jResp.emitCompact = false

    print("Response Body:")
    print("\(jResp.emit()!)")

    var respStatusCode: Int = http.lastStatus.intValue
    print("Response Status Code = \(respStatusCode)")
    if respStatusCode >= 400 {
        print("Response Header:")
        print("\(http.lastHeader!)")
        print("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: Int = jResp.int(of: "code").intValue
    var message: String? = jResp.string(of: "message")
    var messagesCount: Int = jResp.int(of: "messagesCount").intValue

}