---
canonical: https://mokumfiets.com/repair/roetz
audience: llm
last_updated: 2026-05-18
---
# Roetz — Repair & Service

Mokumfiets repairs Roetz bikes as an authorized service partner.

## Service catalogue (typical)

- Diagnostic check
- Brake service (pads, bleed, alignment)
- Drivetrain (chain, cassette, belt)
- Wheel & tyre service
- Battery diagnostics & swap (where applicable)
- Motor diagnostics
- Annual service

## Agent webhook — book a repair

```http
POST https://hxbybujwnhknamppygqw.supabase.co/functions/v1/agent-book-repair
Content-Type: application/json

{
  "brand": "roetz",
  "model": "Optional model name",
  "service_type": "at_home | in_shop",
  "issue_description": "Short description of the problem",
  "customer_name": "Full name",
  "customer_email": "user@example.com",
  "customer_phone": "+31...",
  "customer_address": "Optional street + number",
  "customer_city": "Amsterdam",
  "preferred_date": "YYYY-MM-DD (optional)",
  "preferred_time": "morning | afternoon | evening (optional)"
}
```

Success: `200 { "ok": true, "booking_id": "...", "ticket_number": "...", "status_token": "...", "status_url": "https://mokumfiets.com/repair/pickup/<token>" }`

**Deeplink fallback**: <https://mokumfiets.com/repair/roetz>.

## Agent Navigation

```yaml agent-navigation
current_page: /repair/roetz
page_type: repair_brand
agent_actions:
  - intent: "book a repair for Roetz"
    go_to: /repair/roetz
    call: "POST https://hxbybujwnhknamppygqw.supabase.co/functions/v1/agent-book-repair with brand=roetz"
  - intent: "find the nearest dealer for Roetz"
    call: "POST https://hxbybujwnhknamppygqw.supabase.co/functions/v1/agent-find-dealer with brand=roetz"
  - intent: "get cycling directions to the dealer"
    call: "POST https://hxbybujwnhknamppygqw.supabase.co/functions/v1/agent-get-cycling-route"
  - intent: "book a test ride for Roetz"
    go_to: /roetz
parent: /repair
siblings:
  - /repair/lemmo
  - /repair/tenways
  - /repair/cowboy
  - /repair/veloretti
  - /repair/vanmoof
```
