When debugging or testing, it may be useful to examine the raw request body.
You can do this just after the call response = client.your.api._(param).call.<METHOD>
Where can be get()
, post()
, patch()
and post()
.
print(response.body)
When debugging or testing, it may be useful to examine the raw request body.
You can do this just after the call response = client.your.api._(param).call.<METHOD>
Where can be get()
, post()
, patch()
and post()
.
print(response.body)