CX as Code CLI: Architect flow export returning empty JSON array

Running the genesys-cloud export architect command isn’t pulling any flows. It finishes instantly and writes an empty array [] to the output file. This is weird because the same credentials work fine for exporting queues and users.

I’m using the latest CLI version (2.0.1) and I’ve double-checked the --include-all flag. Here’s the exact command:

genesys-cloud export architect --output ./flows.json --include-all

The debug logs show it’s hitting the /api/v2/architect/flows endpoint and getting a 200 OK. The response body just looks like this:

[]

I can browse to that endpoint in the developer console with the same OAuth token and I see 45 flows. The CLI seems to be filtering them out silently or there’s a bug in the pagination handling. I’ve tried adding --max-items 1000 but no change.

Anyone else hit this? Is there a specific permission scope I’m missing that the CLI requires for bulk export?