GET api/tag/suggest?name={name}

Get tag suggestions for value Processes this tag API request. The parameter and response sections describe the data exchanged with the API.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
name

The value to retrieve suggestions for.

string

Required

Body Parameters

None.

Response Information

Resource Description

The tag suggestions or null if none exist

Collection of TagDataContract
NameDescriptionTypeAdditional information
Name

The name value.

string

None.

SystemStatusName

The system status name value.

string

None.

TagType

The tag type value.

EnumDataContract

None.

Id

The unique identifier of this resource.

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Name": "sample string 1",
    "SystemStatusName": "sample string 2",
    "TagType": {
      "Id": 1,
      "Name": "sample string 2",
      "SystemName": "sample string 3"
    },
    "Id": 3
  },
  {
    "Name": "sample string 1",
    "SystemStatusName": "sample string 2",
    "TagType": {
      "Id": 1,
      "Name": "sample string 2",
      "SystemName": "sample string 3"
    },
    "Id": 3
  }
]