cURL
curl --request GET \ --url https://{subdomain}.mindhunters.ai/api/v1/appointment-requests/{uuid} \ --header 'Authorization: Bearer <token>'
{ "success": true, "message": "Appointment request retrieved successfully", "data": { "id": 1, "uuid": "550e8400-e29b-41d4-a716-446655440000", "title": "Medical Consultation", "description": "Annual checkup", "start_time": "2025-11-25T10:00:00.000000Z", "end_time": "2025-11-25T10:30:00.000000Z", "status": "pending", "notes": "Patient prefers morning appointments", "approval_note": null, "rejection_reason": null, "approved_at": null, "rejected_at": null, "appointment": null } }
Retrieves details of a specific appointment request by UUID.
Use a Bearer token to access these API endpoints. Example: "Bearer {your-token}"
UUID of the appointment request
"550e8400-e29b-41d4-a716-446655440000"
Successful operation
true
"Appointment request retrieved successfully"
Show child attributes