From 0a3bcadb1e22ebbd976275a4b3d4c32e2d759b75 Mon Sep 17 00:00:00 2001 From: Charles Howard <96023061+charlesrhoward@users.noreply.github.com> Date: Mon, 18 May 2026 15:27:03 -0400 Subject: [PATCH] docs: correct auth user response example --- content/docs/web/api/working-requests.mdx | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/content/docs/web/api/working-requests.mdx b/content/docs/web/api/working-requests.mdx index 7ba8c1b..6af6d55 100644 --- a/content/docs/web/api/working-requests.mdx +++ b/content/docs/web/api/working-requests.mdx @@ -53,19 +53,23 @@ Representative response: "github_state": "app_installed_with_synced_repos", "github_installation_count": 2, "github_covered_repo_count": 8, - "managed_access": { - "allowModels": true, - "allowSandboxes": false + "platform_access": { + "allowPlatformAi": true, + "allowPlatformSandbox": false }, "vercel": { "platformState": "ready", + "personalState": "linked", "linkedProjectState": "repo", - "statusLabel": "Project metadata ready" + "statusLabel": "Platform ready" } } } ``` +Current API field names still use `platform_access` and `allowPlatform*`. +Treat those fields as the route's managed account-access flags. + Use this call to answer: - is the caller authenticated?