config

Get configurable start-path choices

Get the authenticated patient's configurable start-path choices.

Returns title, subtitle, description, support copy, cost label and the enabled appointment choices ordered by configuration and adjusted using patient appointment metadata. If appointment_type is provided, only matching choices are returned.

get/api/config/start-path-choices

Query parameters

appointment_typestring nullable

If provided, only returns choices matching this appointment_type (e.g. 'CALL_GRATUITA').

If provided, only returns choices matching this appointment_type (e.g. 'CALL_GRATUITA').

Response

Successful Response

titlestring required

Section title

subtitlestring required

Section subtitle

descriptionstring required

Section description

Example response

{
  "call_gratuita_appointment": {
    "appointment_datetime": "2025-11-20T10:00:00+00:00",
    "appointment_type_code": "CALL_CONOSCITIVA",
    "created_at": "2025-11-15T10:00:00+00:00",
    "duration_seconds": 3600,
    "id": "123e4567-e89b-12d3-a456-426614174000",
    "location": "online",
    "meeting_link": "https://meet.example.com/room123",
    "meeting_link_status": "available",
    "operator_email": "mario.rossi@example.com",
    "operator_first_name": "Mario",
    "operator_id": "123e4567-e89b-12d3-a456-426614174001",
    "operator_last_name": "Rossi",
    "operator_profession": "PSICOLOGO",
    "paid_with_coupon": false,
    "patient_cost": 49,
    "payment_completed_at": "2025-11-15T10:30:00+00:00",
    "payment_method": "stripe",
    "payment_status": "succeeded",
    "status": "DA_FARE"
  }
}

Changes