Outcome
An entity representing an outcome. Outcomes are applied to the content objects.
Examples:
Example JSON
JSON including important fields and a Outcome's resources. See the tables below for a list of all fields and resources.
{ }
Create An Outcome on a Comment
POST to createOutcome(commentID, entity, fields) (String, String, String) /comments/{commentID}/outcomes} creates a new outcome on that comment. The minimum set of fields you must include are:
{ "outcomeType" : {"id" : 1} }
Create Project Task
POST to createOutcome(contentID, entity, fields) (String, String, String) /places/{placeID}/tasks} creates a new task in a project. The minimum set of fields you must include are:
{ "outcomeType" : {"id" : 1} }
Fields
Field | Type | Mode † | Description |
---|---|---|---|
creationDate | ISO 8601 Date | read-only | The creation date of the outcome. |
id | String | read-only | Identifier (unique within an object type and Jive instance) of this object. This field is internal to Jive and should not be confused with contentID or placeID used in URIs. |
note | String | read-only | |
outcomeType | OutcomeType | required | Flag indicating whether objects of this type can be associated to (followed in) an activity stream. Present on Jive core object types only. |
parent | String | read-only | The owner of outcome which is the content object the outcome was made on |
predecessorOutcome | String | read-only | The parent outcome of the given outcome if one exists |
properties | Object | optional | The properties of the outcome Retrieves: |
resources | Object | read-only | Resource links (and related permissions for the requesting person) relevant to this object. |
root | String | read-only | The root owner of outcome which is the parent of the content object the outcome was made on |
status | String | read-only | Published status of this content object.
|
successorOutcomeTypes | OutcomeType[] | read-only | |
updated | ISO 8601 Date | read-only | The modification date of the outcome. |
user | Person | read-only | The user assigned to the outcome. |
Resources
Resource | Method | Description |
---|---|---|
history | GET | |
outcome | POST | |
self | PUT | |
self | DELETE |