remoteit-api 0.14.2

A wrapper around the Remote.it GraphQL API, also implementing the custom request signing.
Documentation
1
2
3
4
5
6
7
8
9
10
11
#Gets the csv download link for device list.
# if you need your organization's list, use the account section


query GetDevicesCSV($orgId: String, $withServices: Boolean = false) {
    login {
        account(id: $orgId){
            report(name:"DeviceList", parameters:{services: $withServices})
        }
    }
}