ContributionsMost RecentMost LikesSolutionsRe: Pagination from JSON Path Has Next URL - Trustpilot VijayKasindala In my example, I did not include the root element. Please add it to the expression to make it work. Nit: You can always use pipeline validation to build your expression. jsonPath($, "$entity.links[?(@.rel=='next-page')].href").length > 0 ? jsonPath($, "$entity.links[?(@.rel=='next-page')].href")[0] : null Re: Pagination from JSON Path Has Next URL - Trustpilot You will get an IndexOutOfBoundsException if the entity does not include next-page information. update your exp to below: jsonPath($, "$.links[?(@.rel=='next-page')].href").length > 0 ? jsonPath($, "$.links[?(@.rel=='next-page')].href")[0] : null Re: HTTP request GET pagination issue with trustpilot API Try below exp: nextPageUrl : jsonPath($, "$.links[?(@.rel=='next-page')].href").length > 0 ? jsonPath($, "$.links[?(@.rel=='next-page')].href")[0] : null hasNextPage: jsonPath($, "$.links[?(@.rel=='next-page')].href").length > 0 Re: Decode column name that has @ as a prefix arvindnsn Try enclosing the fields within [ ]. ex: $['@ID'] $.hasOwnProperty('[\'@ID\']') Re: Receiving Timed Waiting Error. pradhyumna_r Can you provide some more details on this error? Are you using any custom snaps in your pipeline that implement multi-threading? Is this error triggered by an Ultra task or parent and child pipeline? Re: Unable to delete 0kb file From which source are you trying to delete the 0KB file (SLDB, local file system, S3,.. etc.)? Re: diff snap usage in child pipeline brianc0755 It could be related to a parent and child pipeline design issue. Check how your child pipeline is receiving documents from the parent pipeline. To debug this issue, first have your child pipeline store all incoming records in a file. Then, use this file as input to the child pipeline and verify whether it processes the data correctly or not. Re: Jar file download failed : NOT FOUND brianmDid you browse to the driver jar location from the snap property, or did you copy and pasted the file name directly into the account configurations? Re: Error while executing sequence - NotAcceptableIOException : Not acceptable for testsnap2lsat: { "error_map" : null } Hi Reshma, Can you provide some more details on how you are calling the child pipeline from the parent pipeline. Re: Unable to load account definition maheswara Can you post the problem and how you resolved it here? This will be a good reference and helpful for anyone who encounters a similar issue. Thanks.