Integrating Appian with SharePoint

How well does Appian integrate with or into SharePoint?

OriginalPostID-197105

OriginalPostID-197105

  Discussion posts and replies are publicly visible

Parents Reply Children
  • Well it took a bit of wrestling but in the end it fell into place!

    https://[YourSharepointSiteAddress]/_api/web/getfolderbyserverrelativeurl('Shared%20Documents')/folders/add(url='Testing')

    nesting can be done using

    https://[YourSharepointSiteAddress]/_api/web/getfolderbyserverrelativeurl('Shared%20Documents/Testing')/folders/add(url='Testing2')

    You need to loop through creating folders as you go - there's no point in testing if a folder already exists before creating it as it just means more API calls in the event they're not there - may as well just create and if it already exists then no harm done.