Deleted Object

A Deleted Object is a marker left behind to represent an entity that has been removed from Jive. This object can represent content, a place, or a person.

Refer to the Deleted Object Service for a list of all related endpoints.

Examples:
Get All Deleted Content
To get deleted content, perform a GET to /api/core/v3/deletedObjects/contents. A sample response:
 {
     "itemsPerPage" : 25,
     "list" : [ {
         "id" : "eae709c9-b0a0-4582-99a3-dae332f18940",
         "resources" : {
             "self" : {
                 "allowed" : [ "GET" ],
                 "ref" : "https://example.jiveon.com/api/core/v3/deletedObjects/eae709c9-b0a0-4582-99a3-dae332f18940"
             }
         },
         "eventDate" : "2015-05-06T23:31:08.120+0000",
         "objectType" : "discussion",
         "url" : "https://example.jiveon.com/api/core/v3/contents/2379",
         "type" : "deletedObject",
         "objectId" : "2379"
     }, {
         "id" : "6a5286eb-3caf-45ea-8785-7a1a2610c776",
         "resources" : {
             "self" : {
                 "allowed" : [ "GET" ],
                 "ref" : "https://example.jiveon.com/api/core/v3/deletedObjects/6a5286eb-3caf-45ea-8785-7a1a2610c776"
             }
         },
         "eventDate" : "2015-05-06T23:16:30.594+0000",
         "objectType" : "document",
         "url" : "https://example.jiveon.com/api/core/v3/contents/1005",
         "type" : "deletedObject",
         "objectId" : "1005"
     } ],
     "startIndex" : 0
 }
Get Deleted Object
To get information about a single deleted object, perform a GET to /api/core/v3/deletedObjects/ffffffff-ffff-ffff-ffff-ffffffffffff where "ffffffff-ffff-ffff-ffff-ffffffffffff" is the UUID for the deleted object. A sample response:
 {
     "id" : "ffffffff-ffff-ffff-ffff-ffffffffffff",
     "resources" : {
         "self" : {
             "allowed" : [ "GET" ],
             "ref" : "https://example.jiveon.com/api/core/v3/deletedObjects/ffffffff-ffff-ffff-ffff-ffffffffffff"
         }
     },
     "eventDate" : "2015-05-06T23:31:08.120+0000",
     "objectType" : "discussion",
     "url" : "https://example.jiveon.com/api/core/v3/contents/2379",
     "type" : "deletedObject",
     "objectId" : "2379"
 }
Since: 3.12

Fields

FieldTypeMode Description
containerIdStringread-only

Core API place ID of the original entity.

containerTypeStringread-only

Core API place type of the original entity.

containerUriStringread-only

Core API place URI of the original entity.

eventDateISO 8601 Dateread-only

The timestamp when the represented object was deleted.

idStringread-only

UUID Identifier of this deleted object record.

objectIdStringread-only

Core API entity ID of the original entity.

objectTypeStringread-only

Core API entity type of the original entity.

resourcesObjectread-only

Resource links (and related permissions for the requesting person) relevant to this object.

urlStringread-only

URI where the original entity would have been obtained. This URI is no longer accessible.

→ Fields used by update and create operations
→ Fields used only by create operations
→ Fields not used by update or create operations