Skip to main content

Patient

FieldTypeRequiredDescription
firstNameStringmandatory
lastNameStringmandatory
birthdateStringmandatoryAs YYYY-MM-DD format
addressAddressmandatory
genderStringmandatoryCould be: male or female
ssnNumberStringoptionalBegin with 756 and contain a total of 13 digits like 7560000000000

Exemple

Required fields only

{
"firstName": "Martin",
"lastName": "BRON",
"birthdate": "1990-02-20",
"address": {
"street": "Street 30",
"zip": "1700",
"city": "Fribourg"
},
"gender": "male"
}

All fields

{
"firstName": "Martine",
"lastName": "BRON",
"birthdate": "1990-02-20",
"address":{
"street": "Street 30",
"zip": "75000",
"city": "Paris",
"countryCode": "FR"
},
"gender": "female",
"ssnNumber": "7560000000000"
}