POST apioauth/tagiq/user/tags

Add TagIq tags to a user account

Request Information

URI Parameters

None.

Body Parameters

AddTagsRequest

AddTagsRequest
NameDescriptionTypeAdditional information
TagIds

The list of tag ids to add to the user's group

Collection of string

None.

TagMacAddresses

A list of tag mac addresses

Collection of string

None.

Request Formats

application/json, text/json

Sample:
{
  "TagIds": [
    "sample string 1",
    "sample string 2"
  ],
  "TagMacAddresses": [
    "sample string 1",
    "sample string 2"
  ]
}

application/xml, text/xml

Sample:
<AddTagsRequest xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <TagIds>
    <string>sample string 1</string>
    <string>sample string 2</string>
  </TagIds>
  <TagMacAddresses>
    <string>sample string 1</string>
    <string>sample string 2</string>
  </TagMacAddresses>
</AddTagsRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

200 on success

IHttpActionResult

None.

Response Formats

application/json, text/json

Sample:

Sample not available.