ContributionsMost RecentMost LikesSolutionsNetsuite Upsert to Multiple Addresses on Customer Object Hello, I have a requirement to write to multiple addresses on the customer object. I am looking to write to two different address records within Netsuite. This is a screenshot of what I’m referring to. I only see 1 set of address fields on the Customer object in the Upsert snap. How can I accomplish this with the available snaps in the Netsuite pack? Endpoints that require certificates Has anyone ever connected Snaplogic to an endpoint that requires a .crt / .key connection? Specifically I’m looking to connect to ADP, which requires use of certificates. Okta Pagination Hi all, I had originally asked a question around paginating with Okta, specific to the users endpoint. The solution provided to me by @del worked here. I’m now trying to get the System Logs endpoint. The header info with the “next” link now looks like this. I have an array of link values, and in order to find the “next” url to go to, I worked out the following regex: ($.hasPath(“link[]") ? jsonPath($, "link[].value”)[1].toString().match(/\w+://.*?(?=>)/g) : false).toString() However, this validates fine, but doesn’t seem to actually find and replace the next page of values. Has anyone encountered two link references in the header for each self and next and how did they hand the “next” back to the Next URL? SolvedRe: Zoom OAuth Connection It keeps denying me, even though it has a token now. The OAuth connections do not work, but JWT does. I plan on reaching out to support to see if they can help. Appreciate your thoughts! Re: Zoom OAuth Connection Hi @pmancevski, Is your zoom connection, JWT, OAuth, or Server to Server Oauth? When I did flip the Grant Type to client_credentials, I was able to get a token. When I connect with the header authenticated, I get a 400 response. When I connect without the header authenticated, and the Basic Auth header checked, I get a 401. I have tried setting up both Oauth and Server to Server Oauth within the Zoom UI. Zoom OAuth Connection Has anyone attempted to connect to Zoom via OAuth? I can connect and get a token via Postman, but my token in snaplogic does not populate. I’ve looked at the netsuite oauth article that was published. I’ve looked at the overall oauth with SaaS article. However, I cannot get my access token to populate. My settings in SL match postman. Here are my settings - what am I missing? Calling REST APIs with Parameters I need to be able to call a REST endpoint that takes a UserId as a parameter. I’m curious how I can leverage snaplogic to loop over an undetermined list of userIds from one REST endpoint to call another endpoint passing the user id. Is this even possible in Snaplogic? VPN and Snaplogic Has anyone ever had to access applications via Snaplogic that were behind a company VPN? Re: URL Pagination, but it's buried within the string Thanks all! I knew I was on the right path - but needed some eagle eyes to point me in the right direction. URL Pagination, but it's buried within the string This article is very similar to my question. I’m in a bit of a different boat though. My pagination is buried as a string within a string within the headers - not entity. I am able to parse with something like $headers.link.split(“;”)[1] but this seems brittle. My GET snap doesn’t like this for a hasNext: $headers.link.contains(‘rel=“next”’) Solved