Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Required, see Auth - Login

Arguments

id (required)
Community ID to search on

skip (optional)
Number of items to skip (used for paging)

limit (optional)
Number of items to limit return to (used for paging)Note: All of the following arguments are optional.

searchby
Beta release only supports "community"

id
Comma separated list of community IDs.

type
Comma separated list of share types. Example values: dataset, feed, source, query.

skip

limit

Example

http://infinite.ikanow.com/api/share/getcommunity/4d88d0f1f9a624a4b0c8bd71//search/
http://infinite.ikanow.com/api/share/search/?type=feed
http://infinite.ikanow.com/api/share/getcommunity/4d88d0f1f9a624a4b0c8bd71/0/5/search/?searchby=community&id=4c927585d591d31d7b37097a,4d88d0f1f9a624a4b0c8bd71
http://infinite.ikanow.com/api/share/search/?searchby=community&id=4c927585d591d31d7b37097a&skip=0&limit=10

Example Response
Info
Code Block
{
	response: 
	{
		action: "Share"
		success: true
		message: "Share returned successfully"
		time: 41
	}
	data: 
	{
		_id: "4e175bfeb8ed6403f48ea7e2"
		created: "Jul 8, 2011 11:35:26 AM"
		modified: "Jul 10, 2011 9:27:36 AM"
		owner: 
		{
			_id: "4d88d0f1f9a624a4b0c8bd71"
			email: "jdoe@ikanow.com"
			displayName: "John Doe"
		}
		type: "test"
		title: "Test Share"
		description: "Just a test of share functionality"
		share: "random stuff that gets put in share"
		communities: [
			{
				_id: "4d88d0f1f9a624a4b0c8bd71"
				name: "John Doe's Personal Community"
			}
 			{
				_id: "4c927585d591d31d7b37097a"
				name: "Infinit.e System"
				comment: "Share with everyone!"
			}
		]
	}
}

...