GET api/v1/tags/members
List the tags associated with the accounts devices.
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
DeviceTagsDtoName | Description | Type | Additional information |
---|---|---|---|
Tags |
Tags collection |
Collection of TagDto |
None. |
Response Formats
application/json, text/json, application/senml+json
Sample:
{ "Tags": [ { "Tag": "sample string 1", "Count": 2, "Weight": 3.1 }, { "Tag": "sample string 1", "Count": 2, "Weight": 3.1 } ] }
application/xml, text/xml
Sample:
<DeviceTagsDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AnalysisUK.Tinamous.www.Models.Devices"> <Tags> <TagDto> <Count>2</Count> <Tag>sample string 1</Tag> <Weight>3.1</Weight> </TagDto> <TagDto> <Count>2</Count> <Tag>sample string 1</Tag> <Weight>3.1</Weight> </TagDto> </Tags> </DeviceTagsDto>