Restructure API endpoints to only use one base URL
We're currently pushing documents from a different system through your APIs using an integration platform.
Here we are uploading files and then assigning metadata templates to them for later use in searches and checking for versions, etc.
The integration platform vendor is taking pay through every baseline URL we add to the system as a connector and then allowing us to basically have as many connections to the same system as we want using that base URL. This is relevant to our challenge.
When utilizing the Box API, the base URL (based on the documentation I've found) for uploading documents is:
"https://upload.box.com/api/2.0....."
While when searching for files or uploading metadata, etc. then the baseline URL is:
"https://api.box.com/2.0/files...."
Because of the baseurl difference then this means that we have to pay twice to connect to the same system.
I'm therefore wondering if you have any other endpoints or are planning to move your endpoints so that we only have to either use "https://api.box.com" or "https://upload.box.com" when connecting to Box?