POST api/IndexedTagValues/DeleteValueByGuid
Deleting a tag value by GUID
Request Information
URI Parameters
None.
Body Parameters
Tag value parameters
ValueData| Name | Description | Type | Additional information |
|---|---|---|---|
| Tag |
Tag ID |
integer |
None. |
| Guid |
Tag GUID |
string |
None. |
| Parent |
Parent value ID |
integer |
None. |
| Value |
Value |
string |
None. |
| Id |
Value ID |
integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"tag": 1,
"guid": "sample string 2",
"parent": 3,
"value": "sample string 4",
"id": 5
}
Response Information
Resource Description
Result containing the flag of successful operation
ObjResultOfBoolean| Name | Description | Type | Additional information |
|---|---|---|---|
| Data | boolean |
None. |
|
| Error |
Error description |
string |
None. |
| Success |
Flag of successful operation |
boolean |
None. |
| ErrorCode |
Error code |
integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"data": true,
"error": "sample string 2",
"success": true,
"errorCode": 4
}
Parameter Information
data
Tag value parameters
| Property | Description |
|---|---|
| Tag (Int64) |
Tag ID |
| Guid (String) |
Tag GUID |
| Parent (Int64) |
Parent value ID |
| Value (String) |
Value |
| Id (Int64) |
Value ID |