Update Datastream Value
Last updated
Was this helpful?
Last updated
Was this helpful?
GET
https://{server_address}/external/api/update?token={token}&{pin}={value}
This endpoint allows you to update the value of the Datastream value via GET request.
Example:
https://blynk.cloud/external/api/update?token=ffujYGgbf805tgsf&v1=100
value
string
The desired value of the Datastream. Will be parsed based on the Datastream data type (int, double, string) and bounded with min / max values of datastream settings. In case value doesn't match the Datastream type error will be returned.
pin
string
Virtual pin number (should start with "v")
token
string
Device auth token
GET
https://{server_address}/external/api/update?token={token}&dataStreamId={id}&value={value}
{% swagger-response status="400" description="Could not find a device token or Wrong dataStreamId format or Value doesn't match the Datastream data type" %}
To update Datastreams that have 2 values, for example Location Datastream, use this call:
or