Requires ModuleWhat's this?
This capability is implemented by a Jive Module.
This feature may not be available on all Jive instances.
This feature may not be available on all Jive instances.
static osapi.jive.corev3.ideas
Methods
↑
Idea describing the newly created discussion 
Requires ModuleWhat's this?
This capability is implemented by a Jive Module.
This feature may not be available on all Jive instances.
This feature may not be available on all Jive instances.
create(idea,options)
POST /idea-type-plugin/v1/contentsRetrieves
IdeaDescription
Create a new idea with specified characteristics, and return an entity representing the newly created idea.
Here is an example of a JSON with the minimum set of fields you must include:
{ "content": { "type": "text/html", "text": "<body><p>This is a fantastic idea</p></body>" }, "subject": "Eat cookies for breakfast" }
If you wish to create this idea within a place, include a parent field that
 contains that place's URI.
Takes:
- Idea fields describing the new discussion
Options:
| Name | Type | Required | Description | 
|---|---|---|---|
| fields | String | false | Names of the fields to be returned | 
Retrieves:
↑
Idea[] Paginated list of matching ideas 
Requires ModuleWhat's this?
This capability is implemented by a Jive Module.
This feature may not be available on all Jive instances.
This feature may not be available on all Jive instances.
get(options)
GET /idea-type-plugin/v1/contentsRetrieves
Content[]Description
Return a paginated list of ideas that match the specified criteria.
Options:
| Name | Type | Required | Description | 
|---|---|---|---|
| author | String | false | URI of a person, limiting results to objects authored by this person | 
| count | Integer | false | Maximum number of objects to return (default is 25) | 
| fields | String | false | Names of the fields to be returned | 
| place | String | false | URI of a place, limiting results to objects contained in that place | 
| search | String | false | One or more search terms separated by commas, limiting results to objects that match the terms | 
| startIndex | Integer | false | Zero-relative index of the first content object to be returned | 
| tag | String | false | Comma delimited list of tag values, limiting results to objects with one of those tags | 
Retrieves:
↑
Idea Representation of the requested idea 
Requires ModuleWhat's this?
This capability is implemented by a Jive Module.
This feature may not be available on all Jive instances.
This feature may not be available on all Jive instances.
get(options)
GET /idea-type-plugin/v1/contents/{uri}Retrieves
ContentDescription
Return a single idea by its URI.
Options:
| Name | Type | Required | Description | 
|---|---|---|---|
| uri | String | true | URI of the idea to get | 
| fields | String | false | Names of the fields to be returned | 
Retrieves:
↑
Requires ModuleWhat's this?
This capability is implemented by a Jive Module.
This feature may not be available on all Jive instances.
This feature may not be available on all Jive instances.
getEditable(options)
GET /idea-type-plugin/v1/contents/{uri}/editableRetrieves
Content