Managing Your Organization & Team Access
Using an API SDK with different Organizations
When using one of our API SDKs, you provide the API Key of your own Bitmovin Account to authenticate your requests and execute them within your Organization:
BitmovinApi bitmovinApi = BitmovinApi.builder()
.withApiKey("<API_KEY>")
.build();If you want to execute API calls in a different organization, you also have to provide the Organization ID when initialising the BitmovinApi object:
BitmovinApi bitmovinApi = BitmovinApi.builder()
.withApiKey("YOUR_API_KEY_HERE")
+ .withTenantOrgId("YOUR_ORGANISATION_ID_HERE")
.build();
NoteDepending on your permissions, you might not be able to execute all actions. In this case, the group you're in needs additional permissions via Team Settings.
Updated about 2 months ago