Reversions
This method retrieves details about specific revisions, tracking changes made to objects over time. This is useful for auditing purposes and ensures traceability of modifications. Each revision includes an ID, creation date, an optional comment explaining the change, and the user who made the revision.
Query parameter comment
used to filter results based on specific conditions.
Query parameter date_created
used to filter results based on specific conditions.
Filters records where date_created
is greater than the given value.
Filters records where date_created
is greater than or equal to the given value.
Filters records where date_created
is less than the given value.
Filters records where date_created
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.
Filters records where modified_date
is greater than the given value.
Filters records where modified_date
is greater than or equal to the given value.
Filters records where modified_date
is less than the given value.
Filters records where modified_date
is less than or equal to the given value.
Query parameter page
used to filter results based on specific conditions.
Query parameter sort
used to filter results based on specific conditions.
Query parameter user
used to filter results based on specific conditions.
GET /api/v1/remote/1/data-warehouse/reversions/revisions/ 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": [
{
"comment": "text",
"date_created": "2025-06-27T08:46:55.524Z",
"id": 1,
"user": 1
}
]
}
This method retrieves details about specific revisions, tracking changes made to objects over time. This is useful for auditing purposes and ensures traceability of modifications. Each revision includes an ID, creation date, an optional comment explaining the change, and the user who made the revision. This endpoint retrieves a specific record by its unique identifier.
A unique integer value identifying this revision.
GET /api/v1/remote/1/data-warehouse/reversions/revisions/{id}/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
{
"comment": "text",
"date_created": "2025-06-27T08:46:55.524Z",
"id": 1,
"user": 1
}
This method provides details about a specific version of an object, capturing the state of the object at the time of revision. When a revision is made, the object version prior to the revision is saved, allowing the system to retain the state of the object before the changes were applied. This includes versioning information such as the ID, associated object ID, the database where the object is stored, the format (e.g., 'json'), and the serialized data representing the object. Additionally, it includes details about the revision that the object version is associated with, its content type, and its representation. This is typically used for tracking changes to objects, enabling version control, and allowing the retrieval of specific historical states of the object for auditing, rollback, or comparison purposes.
Query parameter content_type
used to filter results based on specific conditions.
Query parameter db
used to filter results based on specific conditions.
Query parameter format
used to filter results based on specific conditions.
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 object_repr
used to filter results based on specific conditions.
Query parameter page
used to filter results based on specific conditions.
Query parameter revision
used to filter results based on specific conditions.
Query parameter serialized_data
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/reversions/versions/ 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,
"db": "text",
"format": "text",
"id": 1,
"object_id": "text",
"object_repr": "text",
"revision": 1,
"serialized_data": "text"
}
]
}
This method provides details about a specific version of an object, capturing the state of the object at the time of revision. When a revision is made, the object version prior to the revision is saved, allowing the system to retain the state of the object before the changes were applied. This includes versioning information such as the ID, associated object ID, the database where the object is stored, the format (e.g., 'json'), and the serialized data representing the object. Additionally, it includes details about the revision that the object version is associated with, its content type, and its representation. This is typically used for tracking changes to objects, enabling version control, and allowing the retrieval of specific historical states of the object for auditing, rollback, or comparison purposes. This endpoint retrieves a specific record by its unique identifier.
A unique integer value identifying this sürüm.
GET /api/v1/remote/1/data-warehouse/reversions/versions/{id}/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
{
"content_type": 1,
"db": "text",
"format": "text",
"id": 1,
"object_id": "text",
"object_repr": "text",
"revision": 1,
"serialized_data": "text"
}
Was this helpful?