Skip to main content

List of channels connected to a specified thing

GET 

https://apis.<domain>/iot/things/:thingId/channels

Authorization: http

name: bearerTokentype: httpscheme: bearerin: headerdescription: Authorization Header: `Authorization: Bearer <user_token>`

Retrieves list of channels connected to a specified thing.

Authorization Action:

core:things:getChannels

Request

Path Parameters

    thingId uuidrequired

    Unique thing identifier.

Query Parameters

    offset integer

    Number of items to skip during retrieval.

    limit integer

    Possible values: >= 1 and <= 100

    Default value: 10

    Size of the subset to retrieve.

    connected boolean

    Default value: true

    Connection state of the subset to retrieve.

Responses

Data retrieved.

Schema
    channels object[]
  • Array [
  • id stringrequired

    Unique channel identifier generated by the service.

    name string

    Free-form channel name.

    metadata object

    Arbitrary, object-encoded channel's data.

  • ]
  • total integer

    Total number of items.

    offset integer

    Number of items to skip during retrieval.

    limit integer

    Maximum number of items to return in one page.

curl -L -X GET 'https://apis.<domain>/iot/things/:thingId/channels' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>'
Request Collapse all
Base URL
https://apis.<domain>
Auth
Parameters
— pathrequired
— query
— query
— query