Skip to main content

deviceTags

Get Tags for a specific device

deviceTags(
deviceId: ID!
): [Tag!]!

Arguments

deviceTags.deviceId ● ID! non-null scalar common

Type

Tag object devices

Key-Value Pair metadata to aid in classification of Devices

Code Samples

curl -X POST https://graphql.pointonenav.com/graphql \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_TOKEN" \
-d '{
"query": "query DeviceTags($deviceId: ID!) { deviceTags(deviceId: $deviceId) { key value createdAt } }",
"variables": {
"deviceId": "your-device-id"
}
}'