Skip to main content

deviceProfile

Get a device profile by ID

deviceProfile(
id: ID!
): DeviceProfile!

Arguments

deviceProfile.id ● ID! non-null scalar common

Type

DeviceProfile object device-profiles

Code Samples

curl -X POST https://graphql.pointonenav.com/graphql \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_TOKEN" \
-d '{
"query": "query DeviceProfile($id: ID!) { deviceProfile(id: $id) { id name dataIntervalSeconds autoVirtualRTK { thresholdKm } maxTrueRTK { baselineKm } } }",
"variables": {
"id": "your-profile-id"
}
}'