Calling Device Method

Calling method using REST API

When you call a device method you can pass your arguments as value object. For example this is how you can call a public method with a string argument:

POST https://api.connio.com/v3/data/devices/:ref/methods/:ref

{
  "value": "Hi"
}

Response will be something like:

{
  "result": "Hello world!"
}

You can provide an empty argument list as shown below for methods do not require an input:

{
  "value": {}
}

🚧

USING HTTP GET

Alternatively, you can call a method using HTTP GET

GET https://api.connio.com/v3/data/devices/:ref/methods/:ref?args=