Bad Audience when using a custom API

,

i have the same issue, tried to remove the audience from my token request but got error:

{
“error”: “access_denied”,
“error_description”: “Non-global clients are not allowed access to APIv1”
}

This is how my request looks like:

curl -X POST
https://intoglobal.eu.auth0.com/oauth/token
-H ‘cache-control: no-cache’
-H ‘content-type: application/json’
-H ‘postman-token: e02ffd35-4fdd-5ad9-d821-12b8496caa98’
-d ‘{“client_id”:“7xVERL0bjhY8uWgH62ECfXVXeLW4fzyi”,“client_secret”:“2XtyYZm6zAI3klTMyotFoNOl5IZi6GUI5n3P1UVko27uCvXjxaVBaOf9YnxWgcau”,“grant_type”:“client_credentials”}’

I was able to get a token if I have audience set, but then that token is not useful when I want to access this endpoint: https://intoglobal.eu.auth0.com/api/v2/users.

Please help.