POST /api/Patient/CreatePatient

POST /api/Patient/CreatePatient

Body

Responses

curl \
 -X POST http://api.example.com/api/Patient/CreatePatient \
 -H "Authorization: $API_KEY" \
 -H "Content-Type: application/json-patch+json"
curl \
 -X POST http://api.example.com/api/Patient/CreatePatient \
 -H "Authorization: $API_KEY" \
 -H "Content-Type: application/json" \
 -d '{"name":"string","address":"string","dateOfBirth":"2024-05-04","adminId":"string"}'
curl \
 -X POST http://api.example.com/api/Patient/CreatePatient \
 -H "Authorization: $API_KEY" \
 -H "Content-Type: text/json"
curl \
 -X POST http://api.example.com/api/Patient/CreatePatient \
 -H "Authorization: $API_KEY" \
 -H "Content-Type: application/*+json"
Request examples
{
  "name": "string",
  "address": "string",
  "dateOfBirth": "2025-05-04",
  "adminId": "string"
}
Request examples
{
  "name": "string",
  "address": "string",
  "dateOfBirth": "2025-05-04",
  "adminId": "string"
}