## Issue: Nylas Connector - Incremental Sync Parameter Injection Not Working as Expected #48487
Unanswered
saicharan9676
asked this question in
Connector Builder
Replies: 3 comments
|
The easiest fix is to fork it in Connector Builder and tweak incremental settings until it works, then contribute back the fix. |
0 replies
|
Could you help me fixing the increment sync in the connector builder? I
have tried multiple approaches but none of them work.
Thanks,
Sai
…On Wed, Nov 13, 2024 at 22:14 Natik Gadzhi ***@***.***> wrote:
The easiest fix is to fork it in Connector Builder and tweak incremental
settings until it works, then contribute back the fix.
—
Reply to this email directly, view it on GitHub
<#48487 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/BJW44EPQ7FYGB4RFSAWRQ432AQIQLAVCNFSM6AAAAABRXO2IYCVHI2DSMVQWIX3LMV43URDJONRXK43TNFXW4Q3PNVWWK3TUHMYTCMRUHA4DGOI>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
0 replies
|
Hi! This discussion hasn't had activity in over a year. Is this still relevant to you? If so, please reply and we'll keep it open. If we don't hear back within 14 days, we'll close this as part of our housekeeping. You can always reopen or create a new discussion later. Thanks! |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Hi Team,
Connector Name
Source-Nylas
Connector Version
[Please specify the version you're using]
Description
The Nylas connector is not correctly injecting incremental sync parameters into the API request URL. Despite multiple configuration attempts, the URL is not being constructed as expected for incremental syncs.
Current Behavior
The current URL being generated looks like this:
https://api.us.nylas.com/v3/grants/2dd7fd4d-75da-4c23-8490-66a2fd26d4af/messages?search_query_native=220924800Expected Behavior
The expected URL should look like this:
https://api.us.nylas.com/v3/grants/2dd7fd4d-75da-4c23-8490-66a2fd26d4af/messages?search_query_native=from%3A+%22%7Bvisa.com%7D%22+after%3A+1234567890Where
1234567890is the Unix timestamp for the start of the current slice.Steps to Reproduce
search_query_nativeparameter to include both a dynamic parts (from: "{domain.com}") and (after: [timestamp])We've tried various configurations including:
start_time_optionwithinject_into: request_parameterparameterssectionNone of these attempts have resulted in the correct URL construction.
The connector seems to be injecting a timestamp value into the
search_query_nativeparameter, but it's not preserving the static part of the query or formatting it correctly.All reactions