OpenAPI Reference
Dump
Workspace export and diagnostic data.
Request Body
application/json
TypeScript Definitions
Use the request body type in TypeScript.
Response Body
application/json
curl -X POST "https://example.com/api/v1/dump/export/tables" \ -H "Content-Type: application/json" \ -d '{ "table": "nodes" }'{ "rows": [ { "property1": null, "property2": null } ], "nextCursor": "string"}curl -X GET "https://example.com/api/v1/dump/export/asset-texts/string/content"{ "assetId": "string", "textStorageKey": "string", "downloadUrl": "string", "textContentHash": "string", "byteCount": 0}Request Body
application/json
TypeScript Definitions
Use the request body type in TypeScript.
Response Body
application/json
curl -X POST "https://example.com/api/v1/dump/export/doc-bodies" \ -H "Content-Type: application/json" \ -d '{ "nodeIds": [ "string" ] }'{ "bodies": [ { "nodeId": "string", "markdown": "string" } ]}Request Body
application/json
TypeScript Definitions
Use the request body type in TypeScript.
Response Body
application/json
curl -X POST "https://example.com/api/v1/dump/import/begin" \ -H "Content-Type: application/json" \ -d '{ "sourceSpaceId": "string" }'{ "sessionId": "string"}Request Body
application/json
TypeScript Definitions
Use the request body type in TypeScript.
Response Body
application/json
curl -X POST "https://example.com/api/v1/dump/import/tables" \ -H "Content-Type: application/json" \ -d '{ "sessionId": "string", "table": "nodes", "rows": [ { "property1": null, "property2": null } ] }'{ "inserted": 0}Request Body
application/json
TypeScript Definitions
Use the request body type in TypeScript.
Response Body
application/json
curl -X POST "https://example.com/api/v1/dump/import/commit" \ -H "Content-Type: application/json" \ -d '{ "sessionId": "string" }'{ "ok": true, "warnings": [ "string" ]}Request Body
application/json
TypeScript Definitions
Use the request body type in TypeScript.
Response Body
application/json
curl -X POST "https://example.com/api/v1/dump/import/abort" \ -H "Content-Type: application/json" \ -d '{ "sessionId": "string" }'{ "ok": true}