Deleted Items
This method returns details about a specific deleted item, including its ID, object ID, deletion timestamp, and the content type associated with the item.
Query parameter content_type
used to filter results based on specific conditions.
Query parameter deleted_date
used to filter results based on specific conditions.
Filters records where deleted_date__date
is greater than the given value.
Filters records where deleted_date__date
is greater than or equal to the given value.
Filters records where deleted_date__date
is less than the given value.
Filters records where deleted_date__date
is less than or equal to the given value.
Filters records where deleted_date
is greater than the given value.
Filters records where deleted_date
is greater than or equal to the given value.
Filters records where deleted_date
is less than the given value.
Filters records where deleted_date
is less than or equal to the given value.
Query parameter id
used to filter results based on specific conditions.
Filters records where id
is greater than the given value.
Filters records where id
is greater than or equal to the given value.
Filters records where id
is less than the given value.
Filters records where id
is less than or equal to the given value.
Limits the number of results returned in the response.
Query parameter object_id
used to filter results based on specific conditions.
Query parameter page
used to filter results based on specific conditions.
Query parameter sort
used to filter results based on specific conditions.
GET /api/v1/remote/1/data-warehouse/deleted-items/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
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"
}
]
}
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.
A unique integer value identifying this deleted item.
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?