Check in an appointment
curl --request POST \
--url https://jaliprohmis.derrickmugabwa.dev/api/v1/appointments/{appointment}/check-in \
--header 'Authorization: Bearer <token>'const options = {method: 'POST', headers: {Authorization: 'Bearer <token>'}};
fetch('https://jaliprohmis.derrickmugabwa.dev/api/v1/appointments/{appointment}/check-in', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://jaliprohmis.derrickmugabwa.dev/api/v1/appointments/{appointment}/check-in"
headers = {"Authorization": "Bearer <token>"}
response = requests.post(url, headers=headers)
print(response.text){
"data": {}
}Staff appointments
Check in an appointment
POST
/
appointments
/
{appointment}
/
check-in
Check in an appointment
curl --request POST \
--url https://jaliprohmis.derrickmugabwa.dev/api/v1/appointments/{appointment}/check-in \
--header 'Authorization: Bearer <token>'const options = {method: 'POST', headers: {Authorization: 'Bearer <token>'}};
fetch('https://jaliprohmis.derrickmugabwa.dev/api/v1/appointments/{appointment}/check-in', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://jaliprohmis.derrickmugabwa.dev/api/v1/appointments/{appointment}/check-in"
headers = {"Authorization": "Bearer <token>"}
response = requests.post(url, headers=headers)
print(response.text){
"data": {}
}