I'm using the Box API SDK for .Net, and trying to set it up to use JSON Web Tokens instead of OAuth2.
When I instantiate the BoxConfig object I need to provide the Enterprise ID:
var config = new BoxConfig( clientId, clientSecret, enterpriseId, jwtPrivateKey, jwtPrivateKeyPassword, jwtPublicKeyId );
Seeing some conflicting information:
- The GitHub page for the Box Java SDK says the Enterprise ID is on the developer console, but I don't see it there.
- The Box API help page for App Auth says it's in the Admin Console, but I don't see it there either.
Can someone point me to where, specifically, I could find the Enterprise ID?