Skip to main content

unsetDeviceTag

Un-Assign the provided key-value pair to device(s)

unsetDeviceTag(
input: TagInput!
): Boolean!

Arguments

unsetDeviceTag.input ● TagInput! non-null input devices

Type

Boolean scalar common

The Boolean scalar type represents true or false.

Code Samples

curl -X POST https://graphql.pointonenav.com/graphql \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_TOKEN" \
-d '{
"query": "mutation UnsetDeviceTag($input: TagInput!) { unsetDeviceTag(input: $input) }",
"variables": {
"input": {
"key": "location",
"ids": [
"your-device-id"
]
}
}
}'