I am using the Box API SDK for .Net and trying to configure it to use JSON web tokens instead of OAuth2.
When I instantiate the BoxConfig object, I need to specify the enterprise identifier:
var config = new BoxConfig( clientId, clientSecret, enterpriseId, jwtPrivateKey, jwtPrivateKeyPassword, jwtPublicKeyId );
View some conflicting information:
Can someone point me where, in particular, can I find the company identifier?
source share