``` val exampleUsersList = listOf("1", "2", "3") ....
# http4k
n
Copy code
val exampleUsersList = listOf("1", "2", "3")
...
val spec = ... {
    summary = ...
    receiving(bodyLens to exampleUsersList, "UserIdList")
    returning(...)
}
if i comment out the
receiving
call, it works fine... 🤔