I have external E2E URL which brings data in JSON format and I wanted to load in Microsoft Azure Cosmos DB.
Can anybody suggest the ways to implement this.
Thanks in advance.
I have external E2E URL which brings data in JSON format and I wanted to load in Microsoft Azure Cosmos DB.
Can anybody suggest the ways to implement this.
Thanks in advance.
Cosmos DB includes a MongoDB API. Are you open to using a library for loading the data? For example, here are a few samples:
Additional sample can be found on the left hand navigation menu on either of these samples.
If not a library, here is an introduction to RESTful interactions with Cosmos DB:
It sounds like you're looking for something that can call an HTTP endpoint, get a JSON payload and format it to be put into Azure Cosmos DB. You could create an Azure Function with a Cosmos DB output binding. The Azure Function could be triggered on anything you like (a timer, an HTTP endpoint, etc.).
If that's not the kind of advice you're looking for, can you elaborate on your scenario?