Client hardcodes data partition to opendes
The Client code hardcodes the data-partition-id to "opendes" which is not going to work on most instances.
In /client/api_client.py:
def _build_headers(self, kwargs):
headers = {
"Authorization": f"Bearer {self.token}",
"Content-Type": "application/json",
"data-partition-id": "opendes",
"Cache-Control": "no-store",
}