Making an azure Function to merge two JSON objects
I'm trying to make an Azure Function to merge two JSON objects, but apparently azure Functions don't like the idea of adding a JSON like this:
so now I'm trying to figure out how to make sure I can pass two json objects of which I not know their data into the request body.
My parameters on the request body should be
Does this mean I should be using
currently I'm trying this:
I would love some assistance
I'm stuck at this for 2 days now
so now I'm trying to figure out how to make sure I can pass two json objects of which I not know their data into the request body.
My parameters on the request body should be
(JSON)main_object, (JSON)secondary_object, (anything, so JToken??)matching_property, (string[])merge_propertiesDoes this mean I should be using
JToken?currently I'm trying this:
I would love some assistance
