-
Notifications
You must be signed in to change notification settings - Fork 0
Schedules EndPoints
Branson Ng edited this page Nov 13, 2020
·
4 revisions
localhost:8000/api/schedules/part_timer/
localhost:8000/api/schedules/full_timer/
{
"email": "[email protected]",
"start_date": "2020-10-26",
"end_date": "2020-10-26"
}
localhost:8000/api/schedules/part_timer/:email
localhost:8000/api/schedules/full_timer/:email
{
"data": [
{
"email": "[email protected]",
"start_date": "2020-11-04T16:00:00.000Z",
"end_date": "2020-11-09T16:00:00.000Z"
}
],
"error": ""
}
localhost:8000/api/schedules/full_timer/
{
"email": "[email protected]",
"start_date": "2020-11-05",
"end_date": "2020-11-10"
}