i have the below posted json response.as shown below in json section, the parametersobject is emitted in this line (this is an angular application)
    this._FromInsToSiteDataService.emitOnSubmitButtonClikedBroadcast(parameters)
and it is received in
this.subscriptionBroadcastEmitterOnSubmitButtonClicked = this._FromInsecticidesToSiteMapDataService.getBroascastEmitterOnSubmitButtonClicked().subscribe((response:Object)=>{
        response['siteGeometry'] = this.selectedSite.geometry
        console.log("response: ", response)
        this.sSProvider.startWebServiceFor(response)
    });
    
in the latter code i want to pass the response which is in json format to the webservice and receive it as show in the websrvicepostedbelow`
when i run the code, i expected to see the contents of the json object which is
{
  "dist1": d1,
  "dist2": d2,
  "date1": date1,
  "date2": date2,
  "ingredient": activeIngredient
}
but i get NONE
please let me know how can i correctly get a json object from a webservice
json
 private submit() {
  let parameters = {
  "dist1": d1,
  "dist2": d2,
  "date1": date1,
  "date2": date2,
  "ingredient": activeIngredient
}
    
this._FromInsToSiteDataService.emitOnSubmitButtonClikedBroadcast(parameters)
receiving the json object
this.subscriptionBroadcastEmitterOnSubmitButtonClicked = this._FromInsecticidesToSiteMapDataService.getBroascastEmitterOnSubmitButtonClicked().subscribe((response:Object)=>{
        response['siteGeometry'] = this.selectedSite.geometry
        console.log("response: ", response)
        this.sSProvider.startWebServiceFor(response)
    });
    
webservice:
@app.route("/insSpecifications/<parameters>", methods=['GET'] )
def insSpecifications(parameters):
    # print(request.json())
    print(request.get_json())//returns NONE
    return "OK"
 
    