{ "opencollection": "1.0.0", "info": { "name": "One-Shot access documents API", "version": "1.0.0" }, "items": [ { "info": { "name": "documents", "type": "folder" }, "items": [ { "info": { "name": "List Documents", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/documents/", "params": [ { "name": "limit", "value": "", "type": "query" }, { "name": "offset", "value": "", "type": "query" }, { "name": "include_shared", "value": "", "type": "query" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "List documents for the authenticated user" }, { "info": { "name": "Create Document", "type": "http" }, "http": { "method": "POST", "url": "{{baseUrl}}/documents/", "body": { "type": "json", "data": "{}" }, "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Create a new document" }, { "info": { "name": "Get Document", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/documents/:document_id", "params": [ { "name": "document_id", "value": "", "type": "path" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Get a specific document" }, { "info": { "name": "Update Document", "type": "http" }, "http": { "method": "PATCH", "url": "{{baseUrl}}/documents/:document_id", "params": [ { "name": "document_id", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Update a document" }, { "info": { "name": "Delete Document", "type": "http" }, "http": { "method": "DELETE", "url": "{{baseUrl}}/documents/:document_id", "params": [ { "name": "document_id", "value": "", "type": "path" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Delete a document" }, { "info": { "name": "Create Document Version", "type": "http" }, "http": { "method": "POST", "url": "{{baseUrl}}/documents/:document_id/versions", "params": [ { "name": "document_id", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Create a new version of a document with revised content" }, { "info": { "name": "Get Document Coordinator Context", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/documents/:document_id/coordinator-context", "params": [ { "name": "document_id", "value": "", "type": "path" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Get coordinator context (API key + session ID) for document revision" }, { "info": { "name": "Get Document Comments", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/documents/:document_id/comments", "params": [ { "name": "document_id", "value": "", "type": "path" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Get all comment threads for a document" }, { "info": { "name": "Create Comment", "type": "http" }, "http": { "method": "POST", "url": "{{baseUrl}}/documents/:document_id/comments", "params": [ { "name": "document_id", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Create a new comment or reply" }, { "info": { "name": "Update Comment", "type": "http" }, "http": { "method": "PATCH", "url": "{{baseUrl}}/documents/:document_id/comments/:comment_id", "params": [ { "name": "document_id", "value": "", "type": "path" }, { "name": "comment_id", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Update a comment" }, { "info": { "name": "Delete Comment", "type": "http" }, "http": { "method": "DELETE", "url": "{{baseUrl}}/documents/:document_id/comments/:comment_id", "params": [ { "name": "document_id", "value": "", "type": "path" }, { "name": "comment_id", "value": "", "type": "path" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Delete a comment and its replies" }, { "info": { "name": "Upload Document Image", "type": "http" }, "http": { "method": "POST", "url": "{{baseUrl}}/documents/images", "params": [ { "name": "document_artifact_id", "value": "", "type": "query" }, { "name": "workspace_id", "value": "", "type": "query" } ], "body": { "type": "multipart-form", "data": [] }, "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Upload Document Image" }, { "info": { "name": "Resolve Document Image", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/documents/images/:file_id", "params": [ { "name": "file_id", "value": "", "type": "path" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Resolve Document Image" }, { "info": { "name": "Upload Agent Document Image", "type": "http" }, "http": { "method": "POST", "url": "{{baseUrl}}/workspaces/:workspace_id/document-images", "headers": [ { "name": "authorization", "value": "" } ], "params": [ { "name": "workspace_id", "value": "", "type": "path" } ], "body": { "type": "multipart-form", "data": [] } }, "docs": "Upload Agent Document Image" } ] } ], "bundled": true }