HTTP Device API Reference
Last updated
Last updated
HTTP basics
is a general-purpose network protocol that can be used in IoT applications. You can find more information about HTTP . HTTP protocol is TCP based and uses request-response model.
JIoT server nodes act as an HTTP Server that supports both HTTP and HTTPS protocols.
Client libraries setup
You can find HTTP client libraries for different programming languages on the web. Examples in this article will be based on . In order to setup this tool, you can use instructions in our Hello World guide.
HTTP Authentication and error codes
We will use access token device credentials in this article and they will be referred to later as $ACCESS_TOKEN. The application needs to include $ACCESS_TOKEN as a path parameter in each HTTP request. Possible error codes and their reasons:
400 Bad Request - Invalid URL, request parameters or body.
401 Unauthorized - Invalid $ACCESS_TOKEN.
404 Not Found - Resource not found.
By default, JIoT supports key-value content in JSON. Key is always a string, while value can be either string, boolean, double or long. Using custom binary format or some serialization framework is also possible. See protocol customization for more details. For example:
In order to publish telemetry data to JIoT server node, send POST request to the following URL:
The simplest supported data formats are:
or
Please note that in this case, the server-side timestamp will be assigned to uploaded data! In case your device is able to get the client-side timestamp, you can use following format:
Example
telemetry-data-as-object.json
telemetry-data-as-array.json
telemetry-data-with-ts.json
JIoT attributes API allows devices to
Upload client-side device attributes to the server.
Request client-side and shared device attributes from the server.
Subscribe to shared device attributes from the server.
Publish attribute update to the server
In order to publish client-side device attributes to JIoT server node, send POST request to the following URL:
Example
new-attributes-values.json
Request attribute values from the server
In order to request client-side or shared device attributes to JIoT server node, send GET request to the following URL:
Example
Result
Please note, the intersection of client-side and shared device attribute keys is a bad practice! However, it is still possible to have same keys for client, shared or even server-side attributes.
Subscribe to attribute updates from the server
In order to subscribe to shared device attribute changes, send GET request with optional “timeout” request parameter to the following URL:
Once shared attribute will be changed by one of the server-side components (REST API or Rule Chain) the client will receive the following update:
Example
Result
In order to subscribe to RPC commands from the server, send GET request with optional “timeout” request parameter to the following URL:
Once subscribed, a client may receive rpc request or a timeout message if there are no requests to a particular device. An example of RPC request body is shown below:
where
id - request id, integer request identifier
method - RPC method name, string
params - RPC method params, custom json object
and can reply to them using POST request to the following URL:
where $id is an integer request identifier.
Example subcribe
Example Reply
Reply Body
In order to send RPC commands to the server, send POST request to the following URL:
Both request and response body should be valid JSON documents. Theh content of the documents is specific to the rule node that will handle your request.
Example Request
Request Body
Response Body
HTTP transport can be fully customized for specific use-case by changing the corresponding module.
In the example above, we assume that “1451649600512” is a with milliseconds precision. For example, the value ‘1451649600512’ corresponds to ‘Fri, 01 Jan 2016 12:00:00.512 GMT’