Deleted Items

get

This method returns details about a specific deleted item, including its ID, object ID, deletion timestamp, and the content type associated with the item.

Authorizations
Query parameters
content_typeintegerOptional

Query parameter content_type used to filter results based on specific conditions.

deleted_datestring · date-timeOptional

Query parameter deleted_date used to filter results based on specific conditions.

deleted_date__date__gtstring · dateOptional

Filters records where deleted_date__date is greater than the given value.

deleted_date__date__gtestring · dateOptional

Filters records where deleted_date__date is greater than or equal to the given value.

deleted_date__date__ltstring · dateOptional

Filters records where deleted_date__date is less than the given value.

deleted_date__date__ltestring · dateOptional

Filters records where deleted_date__date is less than or equal to the given value.

deleted_date__gtstring · date-timeOptional

Filters records where deleted_date is greater than the given value.

deleted_date__gtestring · date-timeOptional

Filters records where deleted_date is greater than or equal to the given value.

deleted_date__ltstring · date-timeOptional

Filters records where deleted_date is less than the given value.

deleted_date__ltestring · date-timeOptional

Filters records where deleted_date is less than or equal to the given value.

idintegerOptional

Query parameter id used to filter results based on specific conditions.

id__gtintegerOptional

Filters records where id is greater than the given value.

id__gteintegerOptional

Filters records where id is greater than or equal to the given value.

id__ltintegerOptional

Filters records where id is less than the given value.

id__lteintegerOptional

Filters records where id is less than or equal to the given value.

limitintegerOptional

Limits the number of results returned in the response.

object_idstringOptional

Query parameter object_id used to filter results based on specific conditions.

pageintegerOptional

Query parameter page used to filter results based on specific conditions.

sortstringOptional

Query parameter sort used to filter results based on specific conditions.

Responses
200
Successful response for status code 200.
application/json
get
GET /api/v1/remote/1/data-warehouse/deleted-items/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
200

Successful response for status code 200.

{
  "count": 123,
  "next": "http://api.example.org/accounts/?page=4",
  "previous": "http://api.example.org/accounts/?page=2",
  "results": [
    {
      "content_type": 1,
      "deleted_date": "2025-06-27T08:33:18.139Z",
      "id": 1,
      "object_id": "text"
    }
  ]
}
get

This method returns details about a specific deleted item, including its ID, object ID, deletion timestamp, and the content type associated with the item. This endpoint retrieves a specific record by its unique identifier.

Authorizations
Path parameters
idintegerRequired

A unique integer value identifying this deleted item.

Responses
200
Successful response for status code 200.
application/json
get
GET /api/v1/remote/1/data-warehouse/deleted-items/{id}/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
{
  "content_type": 1,
  "deleted_date": "2025-06-27T08:33:18.139Z",
  "id": 1,
  "object_id": "text"
}

Was this helpful?