I have an endpoint like this:
@app.get("/Corr")
async def Corr(symbols : list, sample : str) -> List[CorrItem]:
I would like to call it with a list of symbols like this:
http://endpoint.com/Corr?symbols=[GOOG, MSFT]&sample=M
I am getting a runtime error:
HTTP/1.1" 422 Unprocessable Entity