Patients
This is the api for managing patients and patient content
Create a new patient
POST /api/user/patient
This is endpoint to create a new patient
Headers
Name
Value
Content-Type
application/json
Authorization
<token>
Body
Name
Type
Description
name
string
Name of the patient
Response
{
"id": 1,
"name": "John"
}{
"error": "Invalid request"
}Last updated