Need to redirect a user after login to `some-endpoint/{jwt_access_token}`

Hello,

I am integrating my store, hosted on BigCommerce platform.
To be able to authenticate the user on BigCommerce after login in Auth0, I need to redirect the user to a url that ends with the actual JWT token. docs

since actions do not offer this capability, what other options do I have?

Hi @Asser.elfeki,

Welcome to the Auth0 Community!

To redirect your users to a specific URL after their login, you can specify this value in the redirect_uri in the authorization request. This URL must match one of the Allowed Callback URLs specified in your Application settings.

For example:

https://{yourDomain}/authorize?
    response_type=code&
    client_id={yourClientId}&
    redirect_uri={https://yourApp/callback}&
    scope={scope}&
    audience={apiAudience}&
    state={state}

Thanks,
Rueben