How to get a users id token inside of the Post User Registration Auth0 Action

Hi @joshuarichards001,

Welcome to the Auth0 Community!

You should not be using the ID token as an authorization bearer token. You should be using an access token.

To get a token, you need to set up your Action as an application in the Dashboard. In this case, your Action will act as a machine to machine (M2M) application that makes requests to your API.

Then you can request an access token for your API with a client credentials grant.

It is very similar to the process outlined here.