@route.post('/')
async def return_header(name: str = Header(...),
                       age: str = Header(...),country: str = Header(...),
                       json_body : dict = Body(...)):
  return get_data(json_headers, json_body)
What do I have to add in return_header function such that all the headers are stored in json_headers
def get_data(headers=None, body=None):
  url = ''
  certs = ''
  response = requests.post(url, cert=certs, headers=headers, json=body, 
  verify=False)
  return some_fun(response.json()) 
 
     
    