35 lines
679 B
JSON
35 lines
679 B
JSON
{
|
|
"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"
|
|
}
|
|
]
|
|
}
|
|
}
|