Skip to main content
Smitha M
March 27, 2023
Solved

Invalid scopes: account.user+offline_access

  • March 27, 2023
  • 12 replies
  • 438 views

I'm trying to generate ACCESS TOKEN with  account.user+offline_access scope and I keep getting Invalid scope error. Is there a differnt way to specify multiple scopes ?

Invalid scopes: account.user+offline_access

 

Best answer by Michael B

Account tokens can be generated by using the authorization endpoint `/authorizeAccount`. Note that the user authorizing the token must have admin privileges on the account.

You can find more information at account-tokens and authorization-endpoints

Comments

Michael B
Lucid product team
September 30, 2025

https://developer.lucid.co/reference/listteams highlights the changes to https://developer.lucid.co/reference/listusers that are under development. Just as you can use a `user-token` and include the `Lucid-Request-As` header with LIST Teams to be an admin, you will be able to call LIST Users as an admin.

 

One difference will be that LIST Teams has both a `admin` and `non-admin` version. LIST Users with a `user-token` will be `admin` only.  I do not have a good estimate of when this change will be available, as its competing against a number of high prioroity projects. But, it will be completed in relatively short order.

October 1, 2025

Thanks for the detailed explanation..