path("debit") {
                    post {
                        entity(Jackson.unmarshaller(DebitRequest::class.java)) { debit ->
                            val response: CompletionStage<DebitResponse> = ask(supervisor, debit.operation(), timeout)
                                    .thenApply { it as DebitResponse }