{ "opencollection": "1.0.0", "info": { "name": "langfuse AnnotationQueues Projects API", "version": "1.0" }, "items": [ { "info": { "name": "Projects", "type": "folder" }, "items": [ { "info": { "name": "projects_get", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/api/public/projects", "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "docs": "Get Project associated with API key (requires project-scoped API key). You can use GET /api/public/organizations/projects to get all projects with an organization-scoped key." }, { "info": { "name": "projects_create", "type": "http" }, "http": { "method": "POST", "url": "{{baseUrl}}/api/public/projects", "body": { "type": "json", "data": "{}" }, "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "docs": "Create a new project (requires organization-scoped API key)" }, { "info": { "name": "projects_update", "type": "http" }, "http": { "method": "PUT", "url": "{{baseUrl}}/api/public/projects/:projectId", "params": [ { "name": "projectId", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "docs": "Update a project by ID (requires organization-scoped API key)." }, { "info": { "name": "projects_delete", "type": "http" }, "http": { "method": "DELETE", "url": "{{baseUrl}}/api/public/projects/:projectId", "params": [ { "name": "projectId", "value": "", "type": "path" } ], "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "docs": "Delete a project by ID (requires organization-scoped API key). Project deletion is processed asynchronously." }, { "info": { "name": "projects_getApiKeys", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/api/public/projects/:projectId/apiKeys", "params": [ { "name": "projectId", "value": "", "type": "path" } ], "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "docs": "Get all API keys for a project (requires organization-scoped API key)" }, { "info": { "name": "projects_createApiKey", "type": "http" }, "http": { "method": "POST", "url": "{{baseUrl}}/api/public/projects/:projectId/apiKeys", "params": [ { "name": "projectId", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "docs": "Create a new API key for a project (requires organization-scoped API key)" }, { "info": { "name": "projects_deleteApiKey", "type": "http" }, "http": { "method": "DELETE", "url": "{{baseUrl}}/api/public/projects/:projectId/apiKeys/:apiKeyId", "params": [ { "name": "projectId", "value": "", "type": "path" }, { "name": "apiKeyId", "value": "", "type": "path" } ], "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "docs": "Delete an API key for a project (requires organization-scoped API key)" } ] } ], "bundled": true }