Get Family Appointments
- Endpoint:
/family/appointments
- Method: GET
- Description: Retrieves appointments for the family.
- Authorization: Requires authentication token.
- Responses:
- 200 OK
{ "message": "success", "appointments": [ // List of appointments ] }
- 401 Unauthorized
{ "message": "Unauthorized" }
- 500 Internal Server Error
{ "message": "Family appointments retrieval failed" }
- 200 OK
- Example:
curl -X GET http://<your-server-address>/family/appointments \ -H "Authorization: Bearer <your-auth-token>"