Hey Everyone, i am currently bulding a custom con...
# help-connector-development
j
Hey Everyone, i am currently bulding a custom connector that i want to use the incremental sync feature, so far everything is looking good, apart from trying to add in a Start time request option. My data source (JobAdder a recruitment CRM - api doc https://api.jobadder.com/v2/docs#tag/Note-API:Notes) supports a request parameter of updatedAt but requires a > to be prefixed to the date, any idea how i can do that?
a
you can do this by adding request options to your requester (you might have to format it using the format_datetime macro. example:
Copy code
requester:
  request_options_provider:
    request_parameters:
      updatedAt: ">{{ stream_slice['start_time'] }}"
j
That is ace, cheers Alexandre!
This worked perfectly 👍
🎉 1
r
is there anyway to know what all variables are accessible in the jinja templates such as
stream_slice
that you have defined there?
a
r
awesome thanks!