I’m trying to connect to ServiceNow from Foundry to retrieve data.
I want to authenticate to ServiceNow using OAuth.
I would like to know best practices if you have been considered in the past.
Hi!
I’ve seen an integration where Foundry fetches data from the data connection app using OAuth credentials provided by the ServiceNow side.
One other option would be to get ServiceNow to push data to Foundry by giving them OAuth credentials from Foundry (Docs), potentially a solution if you need streaming, but I don’t know if that’s a feature from their side.
Hi, I appreciate your comment.
I would like to confirm more about the specific implementation.
I created Outbound applications with reference to the link below.
And then I set up the RESTAPI connector for ServiceNow.
https://www.palantir.com/docs/jp/foundry/administration/configure-outbound-applications/
I would like to import the RESTAPI connector settings into a code repository for connecting to ServiceNow.
Do you know of any reference for coding?
hey! I believe this is what you’re looking for: https://www.palantir.com/docs/foundry/data-integration/external-transforms-source-based/
We do not currently support Outbound Apps for non-interactive OAuth flows unfortunately (authorization grant only today, and only for webhooks). You’ll likely want to create a REST API source and generate your own client credentials and add them as secrets on the source, and then use source based external transforms as jshelby linked above