Sample code for 30+ languages & platforms
Swift

Bluzone Get List of Beacons

See more Bluzone Examples

Get beacons for a project.

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 -X GET \
    //   https://bluzone.io/portal/papis/v1/projects/YOUR_PROJECT_ID_HERE/devices/beacons \
    //   -H 'bzid: YOUR_API_KEY_HERE'

    http.setRequestHeader(name: "bzid", value: "YOUR_API_KEY_HERE")

    let sbResponseBody = CkoStringBuilder()!
    success = http.quickGetSb(url: "https://bluzone.io/portal/papis/v1/projects/YOUR_PROJECT_ID_HERE/devices/beacons", sbContent: sbResponseBody)
    if success == false {
        print("\(http.lastErrorText!)")
        return
    }

    print("Response body:")
    print("\(sbResponseBody.getAsString()!)")

}