We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
We need CRUD APIs for PatientProfile
Only authorised users can call these APIs
I have added * with some params which means its required/mandatory.
*
CREATE
name*
gender
dob
blood_group
address_line_1*
address_line_2
city*
state*
country*
pincode*
user_id
Address
User
UPDATE
user_id*
name
address_line_1
city
state
country
pincode
patient_profile_id
PatientProfile
DELETE
GET ALL
doctor_profile_id
GET
No response
The text was updated successfully, but these errors were encountered:
rray524
Successfully merging a pull request may close this issue.
Is your feature request related to a problem? Please describe.
We need CRUD APIs for PatientProfile
Describe the solution you'd like
Only authorised users can call these APIs
I have added
*
with some params which means its required/mandatory.CREATE
name*
,gender
dob
,blood_group
,address_line_1*
,address_line_2
,city*
,state*
,country*
,pincode*
user_id
Address
model and then use that address_id in establishment model.User
model also has a entry to connect patient profile.UPDATE
user_id*
,name
,gender
dob
,blood_group
,address_line_1
,address_line_2
,city
,state
,country
,pincode
patient_profile_id
PatientProfile
model or inAddress
model.DELETE
user_id
patient_profile_id
GET ALL
name
,city
,state
,country
,pincode
,doctor_profile_id
(via header).GET
user_id
patient_profile_id
Describe alternatives you've considered
No response
Additional context
No response
The text was updated successfully, but these errors were encountered: