Hi everyone β I wanted to put a great member of the SnapLogic community on your radar. Sanchita Ghuge, who many of you may know through her work at Gensler, is currently exploring her next career opportunity, and I wanted to help broaden her network within our community. Sanchita brings 8+ years of enterprise data integration and data engineering experience, including more than seven years working on complex integration environments at Gensler. She has deep, hands-on experience with SnapLogic, along with Python, SQL/T-SQL, Microsoft Fabric, SSIS, Azure Data Factory, REST APIs and enterprise data architecture. Her experience spans a broad range of enterprise platforms and business domains, including Workday, Salesforce, Anaplan, Kyriba, Active Directory, Vantagepoint, finance, HR, payroll and banking systems. She has also been heavily involved in platform modernization, production integration support, monitoring and reconciliation, data-quality initiatives, and large-scale system migrations. More recently, she's also been exploring how AI can be applied to integration operations and incident triage, combining her core data engineering background with emerging AI technologies. Having worked with Sanchita through the Gensler/SnapLogic relationship, I wanted to reach out to this community in case anyone is hiringβor knows an organization looking for an experienced Data Integration Engineer, Data Engineer, Integration Engineer or similar technical role. If something comes to mind, please connect with Sanchita directly or feel free to share this with your network. LinkedIn: linkedin.com/in/sanchita-ghuge Wishing you all the best with the search, Sanchita! π
Hi Matthew H. Has Next β keep it exactly as is, it's correct:
$.entity.meta.page.hasMore == trueNext URL β need to construct the next URL using from or to as a cursor. The pattern is usually:
"https://their-api-base-url.com/their/endpoint?from=" + $.entity.meta.page.to
The to value (2279) typically becomes the starting point for the next page β the API is likely paginating backwards through record IDs. To answer your direct question: No, do NOT replace the Has Next line. Keep it. Just add the Next URL field with the constructed URL above. --- To confirm the exact cursor field, should check your API docs β specifically whether the next page call uses from=<to_value> or cursor=<to_value> or something else. But the $.entity.meta.page.to value is almost certainly the right cursor to use. "What does the base URL of your API call look like, and is there a from or cursor query parameter?" β that'll confirm the Next URL expression pattern. π
