Wrangler deploy missing permissions to read account

I'm trying to deploy a very basic project.

wrangler.jsonc:
{
    "$schema": "node_modules/wrangler/config-schema.json",
    "name": "**********",
    "main": "src/index.ts",
    "compatibility_date": "2025-02-14",
    "observability": {
        "enabled": true
    },
    // "triggers": {
    //     "crons": ["* * * * *"]
    // },
    /**
     * Smart Placement
     * Docs: https://developers.cloudflare.com/workers/configuration/smart-placement/#smart-placement
     */
    // "placement": { "mode": "smart" },

    /**
     * Bindings
     * Bindings allow your Worker to interact with resources on the Cloudflare Developer Platform, including
     * databases, object storage, AI inference, real-time communication and more.
     * https://developers.cloudflare.com/workers/runtime-apis/bindings/
     */
    "browser": {
        "binding": "BROWSER"
    }
}


The console suggests to set the User->User Details->Read permission, but that doesn't even exist in the API token permissions 🤔 I'm lost which permission is missing.
image.png
Was this page helpful?