Skip to main content

List of channels connected to a specified thing

GET 

/iot/things/:thingId/channels

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.

Loading...