{ "opencollection": "1.0.0", "info": { "name": "Arize-Phoenix REST annotation_configs users API", "version": "1.0" }, "items": [ { "info": { "name": "users", "type": "folder" }, "items": [ { "info": { "name": "Get the authenticated user", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/v1/user" }, "docs": "Returns the profile of the currently authenticated user. When authentication is disabled, returns an anonymous user representation." }, { "info": { "name": "List all users", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/v1/users", "params": [ { "name": "cursor", "value": "", "type": "query", "description": "Cursor for pagination (base64-encoded user ID)" }, { "name": "limit", "value": "", "type": "query", "description": "The max number of users to return at a time." } ] }, "docs": "Retrieve a paginated list of all users in the system." }, { "info": { "name": "Create a new user", "type": "http" }, "http": { "method": "POST", "url": "{{baseUrl}}/v1/users", "body": { "type": "json", "data": "{}" } }, "docs": "Create a new user with the specified configuration." }, { "info": { "name": "Delete a user by ID", "type": "http" }, "http": { "method": "DELETE", "url": "{{baseUrl}}/v1/users/:user_id", "params": [ { "name": "user_id", "value": "", "type": "path", "description": "The GlobalID of the user (e.g. 'VXNlcjox')." } ] }, "docs": "Delete an existing user by their unique GlobalID." } ] } ], "bundled": true }