{ "opencollection": "1.0.0", "info": { "name": "langfuse AnnotationQueues Scim API", "version": "1.0" }, "items": [ { "info": { "name": "Scim", "type": "folder" }, "items": [ { "info": { "name": "scim_getServiceProviderConfig", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/api/public/scim/ServiceProviderConfig", "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "docs": "Get SCIM Service Provider Configuration (requires organization-scoped API key)" }, { "info": { "name": "scim_getResourceTypes", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/api/public/scim/ResourceTypes", "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "docs": "Get SCIM Resource Types (requires organization-scoped API key)" }, { "info": { "name": "scim_getSchemas", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/api/public/scim/Schemas", "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "docs": "Get SCIM Schemas (requires organization-scoped API key)" }, { "info": { "name": "scim_listUsers", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/api/public/scim/Users", "params": [ { "name": "filter", "value": "", "type": "query", "description": "Filter expression (e.g. userName eq \"value\")" }, { "name": "startIndex", "value": "", "type": "query", "description": "1-based index of the first result to return (default 1)" }, { "name": "count", "value": "", "type": "query", "description": "Maximum number of results to return (default 100)" } ], "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "docs": "List users in the organization (requires organization-scoped API key)" }, { "info": { "name": "scim_createUser", "type": "http" }, "http": { "method": "POST", "url": "{{baseUrl}}/api/public/scim/Users", "body": { "type": "json", "data": "{}" }, "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "docs": "Create a new user in the organization (requires organization-scoped API key)" }, { "info": { "name": "scim_getUser", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/api/public/scim/Users/:userId", "params": [ { "name": "userId", "value": "", "type": "path" } ], "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "docs": "Get a specific user by ID (requires organization-scoped API key)" }, { "info": { "name": "scim_deleteUser", "type": "http" }, "http": { "method": "DELETE", "url": "{{baseUrl}}/api/public/scim/Users/:userId", "params": [ { "name": "userId", "value": "", "type": "path" } ], "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "docs": "Remove a user from the organization (requires organization-scoped API key). Note that this only removes the user from the organization but does not delete the user entity itself." } ] } ], "bundled": true }