You do not have permission to view OAuth Client

I made a new OAuth Client v1 app but when I get my access token and try to query the v1 endpoint https://www.patreon.com/api/oauth2/api/current_user I get a 403 with this response:

{
    "errors": [
        {
            "code": null,
            "code_name": "OAuthClientViewForbidden",
            "detail": "You do not have permission to view OAuth Client with id [redacted]",
            "id": "[redacted]",
            "status": "403",
            "title": "You do not have permission to view this OAuth Client."
        }
    ]
}

I have an existing OAuth Client v1 and when I talk to the same endpoint with an access token it correctly returns the data without a 403.

Do I need to wait for my OAuth Client v1 to be approved or something?

Try creating a v2 token and using that call with that.

Tried that with no success

Are you using your creator access token to access your campaign info and your patrons’ info, or are you using a authorization token as a user to access user data?