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
mutation StartJob($fileId: String!, $deviceIds: [String!]!, $arguments: [ArgumentInput!]!) {
    startJob(
        fileId: $fileId,
        #Device IDs OR Tags are used to identify the devices for the job. If both device IDs and tags are passed, device Ids will be used.
        deviceIds: $deviceIds,
        #optional device tags (can be used to run a group of scripts against a set of devices with these tags at time of execution)
        #ANY/ALL (i.e. or/and), when tags are used, operator should accompany
        #tagFilter: {operator: ANY, values:["reboot"]},
        arguments: $arguments
    )
}