Hi @ryan5500
Welcome back to the Auth0 Community!
In order to user a description of the scope you will need to enable to use_scope_descriptions_for_consent flag
curl --request PATCH \
--url 'https://{yourDomain}/api/v2/tenants/settings' \
--header 'authorization: Bearer API2_ACCESS_TOKEN' \
--header 'cache-control: no-cache' \
--header 'content-type: application/json' \
--data '{ "flags": { "use_scope_descriptions_for_consent": true } }'
If you would like to display the Description field instead, you can do so by setting the tenant’s use_scope_descriptions_for_consent to true. This will affect consent prompts for all of the APIs on that tenant.
Thanks
Dawid