2

We have to extract almost 1,000 documents for a divestiture. Doing it by clicking is going to take a long time. I know Jive has an API, but I can find anything that would let us download multiple files from multiple groups.

Any ideas are appreciated.

Thanks!

1 Answers1

5

Sure. Use /contents/{contentID} to grab a document.

There's more detail in the Document Entity Section of the Jive REST API Documentation.

You might find your list of documents to retrieve by using the Search methods of the API. Here's a curl example:

curl -v -u <username:password> https://<url>/api/core/v3/search/contents?filter=search(<search term>)

Also, just so you know, there is an active Jive Developer Community where questions like this are likely to get more eyeballs. And, as a start to Development with Jive in general, check out https://developer.jivesoftware.com/

Tom Resing
  • 2,078
  • 1
  • 21
  • 28