🚶‍♂️ Patient (experimental)

You can send information of the current patient via this route :

Patient

POST localhost:63336/v0/patient

with this JSON

POST patient body
{
  "id" : "7809812", // identifiant unique
  "gender" : "Male", // Male | Female | Other | Unknown
  "birthDate" : "1967-01-18", // mercredi 18 janvier 1967
  "ethnicity" : "Caucasian", // Caucasian | SouthEastAsian | NorthEastAsian | AfricanAmerican | Other
  "height" : "175", // height in Cm
  "weight" : "85", // weight in Kg
  "firstName": "John", 
  "lastName": "Doe"
}

E.g. for an spirometry :

You send this :

You get this :

Last updated

Was this helpful?