Skip to main content

device

Get a single Device by ID from the specified account

device(
id: ID!
): Device!

Arguments

device.id ● ID! non-null scalar common

Type

Device object devices

Contains information about a Device in the system

Code Samples

curl -X POST https://graphql.pointonenav.com/graphql \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_TOKEN" \
-d '{
"query": "query GetDevice($id: ID!) { device(id: $id) { id label services { rtk { enabled connectionStatus ntrip { login password } } } } }",
"variables": {
"id": "your-device-id"
}
}'