first commit

This commit is contained in:
nasir@endelospay.com
2025-05-20 01:22:10 +05:00
commit 8eed508e6d
5 changed files with 2483 additions and 0 deletions

34
sample.json Normal file
View File

@@ -0,0 +1,34 @@
{
"getAppointment": {
"method": "POST",
"url": "/api/get-appointment-list-date",
"fields": [
{
"name": "date",
"description": "date of appointment"
},
{
"name": "patient_name",
"description": "patient's name"
}
],
"payload": {
"start_date": "2025-04-01",
"end_date": "2025-04-30"
}
},
"start_call": {
"method": "POST",
"url": "/api/get-appointment-list-date",
"fields": [
{
"name": "patient_id",
"description": "Id of patient"
},
{
"name": "appoinment_id",
"description": "appoinment id of patient"
}
]
}
}