Project Changes
Reconstruct Project At Version
Rebuild the project state as of a given change seq (for preview / scrubber). Non-destructive.
GET
Reconstruct Project At Version
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Rebuild the project state as of a given change seq (for preview / scrubber). Non-destructive.
curl --request GET \
--url https://api.oviond.com/v1/projects/{project_id}/at/{seq} \
--header 'Authorization: Bearer <token>'{
"success": true,
"data": {
"seq": 123,
"project": {},
"pages": [
{}
],
"widgets": {}
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
curl --request GET \
--url https://api.oviond.com/v1/projects/{project_id}/at/{seq} \
--header 'Authorization: Bearer <token>'{
"success": true,
"data": {
"seq": 123,
"project": {},
"pages": [
{}
],
"widgets": {}
}
}