Sample code for 30+ languages & platforms
Dart

Bluzone Get List of Beacons

See more Bluzone Examples

Get beacons for a project.

Chilkat Dart Downloads

Dart
import 'package:chilkat/chilkat.dart';

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

  final http = CkHttp();

  // 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('bzid', 'YOUR_API_KEY_HERE');

  final sbResponseBody = CkStringBuilder();
  try {
    http.quickGetSb('https://bluzone.io/portal/papis/v1/projects/YOUR_PROJECT_ID_HERE/devices/beacons', sbResponseBody);
  } on ChilkatException catch (e) {
    print(e.lastErrorText);
    return;
  }

  print('Response body:');
  print(sbResponseBody.getAsString());
}