Minor changes are by default collapsed in the page history.
No changes
The page does not exist yet.
Failed to load changes
Version by on
Leave Collaboration
Are you sure you want to leave the realtime collaboration and continue editing alone? The changes you save while editing alone will lead to merge conflicts with the changes auto-saved by the realtime editing session.
CRUD and List operations
Artifacts that support CRUD operations follow standard REST principles by accessing the resource through the URLs:
Create: POST /<resourceName>
Read: GET /<resourceName>/{id}
Update: PUT /<resourceName>/{id}
Delete: DELETE /<resourceName>/{id}
List: GET /<resourceName>
The Read operation returns a JSON based object while the Create and Update operations requires a JSON based object in the request body. All CRUD operations require a valid token header to be present.