Skip to main content
Nintex Community Menu Bar

Form submit to other (non-SharePoint) web site/service via REST

  • April 22, 2019
  • 2 replies
  • 22 views

thettinger
Forum|alt.badge.img+1

Howdies!

New to the Nintext forums.  I searched around and did not find an immediately relevant answer, but perhaps my query could be refined... 

Anyway, I am looking to use a Nintex form to post information via REST to different (non-sharepoint) site. Essentially, I would like to be able to integrate our helpdesk's software via a REST api call.  We have the REST interaction accomplished in a powershell script, but I am wondering what the appropriate approach in Nintex Forms would be? (if any)

I am thinking that Web Request Control would be the place to start, with some custom javascript that assembled the JSON object to post via a button.

I would like to keep it simple, but maybe using workflow (to interact with the external service's REST API) once the information has been submitted to a SharePoint list would be the path as well.

Any thoughts or tutorials on how to interact a sharepoint form with an external REST api via Nintext? 

 

Some leads so far:

 

2 replies

Forum|alt.badge.img+17
  • April 22, 2019

@thettinger your assumption to use the workflow and "call web service" would be the route to go. Attempting this via the form would seriously overcomplicate it. Doable via javascript, but man that would be a pain to setup a capture for each form control, and then push it. 

 

You could either use Nintex already tied to a SharePoint list, then a workflow to push that over, or you could use Nintex Workflow Cloud (not associated with SharePoint) and capture/directly push that via call web service into your system. The latter is easy to do and works if you are inclined to remove SharePoint completely from the solution mix. 


thettinger
Forum|alt.badge.img+1
  • Author
  • April 23, 2019
Thanks for your feedback! much appreciated!