Hi team, I need to access a field for pagination f...
# help-connector-development
a
Hi team, I need to access a field for pagination from the json response. I tried using body but it outputs to showing that it is not defined.
s
try
response
instead of body?
a
I get back an empty JSON for some reason.
m
GoCardless connectors use the following method:
Copy code
cursor_value: "{{ response['meta']['cursors']['after'] }}"
Workable uses:
Copy code
cursor_value: "{{ response.paging.next }}"
If you need more info I suggest to you search other connectors implementation in the project.
a
Yeah will do, thanks for your help :)