Akshay Hangloo
05/08/2024, 11:18 PM- name: tap-rest-api-msdk--xyz
inherit_from: tap-rest-api-msdk
variant: widen
pip_url: tap-rest-api-msdk
config:
api_url: <https://api.xyz.io/v2>
headers:
Authorization: API_KEY
accept: application/json
pagination_request_style: offset_paginator
pagination_response_style: style1
pagination_page_size: 100
pagination_limit_per_page_param: per_page
pagination_total_limit_param: total_count
next_page_token_path: $.next_page_link
backoff_time_extension: 20
streams:
- name: calls
path: /calls
primary_keys:
- id
records_path: $.data[*]
num_inference_records: 50
select:
- '*.*'
steve_clarke
05/09/2024, 8:55 PMjsonpath_paginator
?
You may need to also experiment with different combinations of the response style as well e.g. hateoas_body
.