Skip to main content
GET
/
api
/
v1
/
appointment-requests
/
{uuid}
Get a specific appointment request
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
  }
}

Authorizations

Authorization
string
header
required

Use a Bearer token to access these API endpoints. Example: "Bearer {your-token}"

Path Parameters

uuid
string<uuid>
required

UUID of the appointment request

Example:

"550e8400-e29b-41d4-a716-446655440000"

Response

Successful operation

success
boolean
Example:

true

message
string
Example:

"Appointment request retrieved successfully"

data
object