POSTMAN Collections
Ingesting Meters using POSTMAN
The easiest way to start with the Amberflo API is by using a Postman collection.
You can create meters, ingest data, and query the data in as little as 5 minutes.
Github repo https://github.com/amberflo/api-postman

Prerequisites
Postman
https://www.postman.com/downloads/
node.js
https://docs.npmjs.com/downloading-and-installing-node-js-and-npm
newman - Postman runtime
https://www.npmjs.com/package/newman
Installation
Download github repo https://github.com/amberflo/api-postman
(also on the github page)
Postman Instructions
Import collection /api-postman/api-tests.collection.json into Postman
https://dash.readme.com/project/amberflo/v1.0/refs/postman-for-api


Import environment file /api-postman/env-prod.json into Postman

Set Amberflo’s username, password, X_API_XEY, and s3_bucket in prod environment file.
{
"key": "username",
"value": "",
"enabled": true
},
{
"key": "password",
"value": "",
"enabled": true
},
{
"key": "X_API_KEY",
"value": "",
"enabled": true
},
{
"key": "s3_bucket",
"value": "",
"enabled": true
}

Launch Runner, select collection and environment file and run.


Updated almost 2 years ago