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

Mokumfiets repairs Cowboy bikes as an independent service provider (factory warranty unaffected; non-genuine parts may be used unless requested otherwise).

## 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": "cowboy",
  "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/cowboy>.

## Agent Navigation

```yaml agent-navigation
current_page: /repair/cowboy
page_type: repair_brand
agent_actions:
  - intent: "book a repair for Cowboy"
    go_to: /repair/cowboy
    call: "POST https://hxbybujwnhknamppygqw.supabase.co/functions/v1/agent-book-repair with brand=cowboy"
  - intent: "find the nearest dealer for Cowboy"
    call: "POST https://hxbybujwnhknamppygqw.supabase.co/functions/v1/agent-find-dealer with brand=cowboy"
  - 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 Cowboy"
    go_to: /cowboy
parent: /repair
siblings:
  - /repair/lemmo
  - /repair/tenways
  - /repair/roetz
  - /repair/veloretti
  - /repair/vanmoof
```
