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"
}
}
{
"$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.
No description
8 Replies
Shufflepuff
ShufflepuffOP•17h ago
These are the permissions of the API token
No description
Walshy
Walshy•17h ago
The API permission is there
No description
Shufflepuff
ShufflepuffOP•17h ago
Omfg :facepalm: Yeah I see it now 😄
Walshy
Walshy•17h ago
For this issue, looks like you're missing Workers Edit
Shufflepuff
ShufflepuffOP•17h ago
Workers Scripts and then Edit?
Shufflepuff
ShufflepuffOP•17h ago
No description
Walshy
Walshy•17h ago
yep
Shufflepuff
ShufflepuffOP•17h ago
Cool, let me check 🙂 Yeah it works now :party_blob: Thanks a bunch!

Did you find this page helpful?