Where is the response in this?
I can't see response which is being sent by the API in the logs and debugging.
Is there any way I can get it?
Hey, we don't support collecting the response output at the moment, it's on a todo list for a future release.
Okay, but response is CRUCIAL part in debugging things.
Yeah, it's a bit tricky to implement, since we don't know what the response will be. It can be empty, simple json response, but also some huge 500MB json structure or a 5GB binary blob, and we need to support all these cases, ideally without crashing your app and adding a lot of processing time.
For that, I'd look at the network activity tab in the browser's debug window, you should be able to find basic stuff like request, response and overall duration there.
Duplicate of https://github.com/itsgoingd/clockwork/issues/127.