From b5460a935d6951478c6e66a8c3262329cd9e23d9 Mon Sep 17 00:00:00 2001 From: Stefan Amberger <1277330+snamber@users.noreply.github.com> Date: Tue, 25 Aug 2026 14:59:35 +0000 Subject: [PATCH] Add canonical IDs to account details Amp-Thread-ID: https://ampcode.com/threads/T-01a03960-16bc-735f-afac-14505af47e7b --- apis/accounts/v1alpha1/account.proto | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/apis/accounts/v1alpha1/account.proto b/apis/accounts/v1alpha1/account.proto index 3b14169..c7dd89e 100644 --- a/apis/accounts/v1alpha1/account.proto +++ b/apis/accounts/v1alpha1/account.proto @@ -19,6 +19,10 @@ message AccountDetails { string organization_slug = 4; // The authentication method used to authenticate the request. AuthenticationMethod active_authentication_method = 5; + // The canonical Tilebox user ID. + string user_id = 6 [(buf.validate.field).string.uuid = true]; + // The canonical Tilebox organization ID. + string organization_id = 7 [(buf.validate.field).string.uuid = true]; } // AuthenticationMethod describes the credential used to authenticate the request.