you just need to add the person/xsd one first beca...
# http4k
d
you just need to add the person/xsd one first because otherwise the wildcard will match
c
Copy code
return "/personer/arkiv/{personalId}" meta {
is wierd that if i call for example on this endpoint /personer/arkiv/123
it does not go on the endpoint
d
aha!
you've misunderstood the API
for the contract routing you need to cut it up into typesafe segments
one mo
you need something like:
Copy code
routes += "/echo" / Path.of("name") meta {
            summary = "echo"
            queries += ageQuery
        } bindContract GET to ::echo
the path definition doesn't work in thesame "inline" tokenised way as the standard routing