GET api/tag/{name}
Get a tag by its name
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| name |
The name of the tag to get. Pass null to be returned an empty data contract. |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
The tag or null if it does not exist
TagDataContract| Name | Description | Type | Additional information |
|---|---|---|---|
| Name | string |
None. |
|
| SystemStatusName | string |
None. |
|
| TagType | EnumDataContract |
None. |
|
| Id | 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
}