Save a new version
Contents

Get a data ID handle
Get a structured data handle
Update the file
Fetch all versions

Last updated
Was this helpful?


Last updated
Was this helpful?
Was this helpful?
POST /data-id/structured-datasafeDataId.getStructuredDataHandle(ACCESS_TOKEN, btoa(`${USER_PREFIX}:${filename}`), 501)GET /structured-data/handle/:dataIdHandlesafeStructuredData.getHandle(ACCESS_TOKEN, dataIdHandle)DELETE /data-id/:handleIdsafeDataId.dropHandle(ACCESS_TOKEN, dataIdHandle)PATCH /structured-data/:handleIdsafeStructuredData.updateData(ACCESS_TOKEN, handleId, payload, SYMETRIC_CYPHER_HANDLE)const payload = new Buffer(JSON.stringify({
ts: (new Date()).getTime(),
content: data
})).toString('base64');POST /structured-data/:handleIdsafeStructuredData.post(ACCESS_TOKEN, handleId)