From 394b9dd04b4e3f082326c2cec068b02ebbfdbd56 Mon Sep 17 00:00:00 2001 From: Jacek Chmielewski Date: Mon, 3 Aug 2026 10:50:08 +0200 Subject: [PATCH] DevicePostureCheckRequest takes device's polling token to authenticate it --- enterprise/v2/posture/posture.proto | 2 ++ 1 file changed, 2 insertions(+) diff --git a/enterprise/v2/posture/posture.proto b/enterprise/v2/posture/posture.proto index fa4022c..32ceb06 100644 --- a/enterprise/v2/posture/posture.proto +++ b/enterprise/v2/posture/posture.proto @@ -60,6 +60,8 @@ message DevicePostureCheckRequest { int64 location_id = 1; string pubkey = 2; DevicePostureData device_posture_data = 3; + // Polling token of the calling device, used to authenticate the request. + optional string token = 4; } message DevicePostureCheckResponse {