{ "opencollection": "1.0.0", "info": { "name": "ZenML OSS REST Artifacts Auth API", "version": "1" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Auth", "type": "folder" }, "items": [ { "info": { "name": "Login and Obtain Access Token", "type": "http" }, "http": { "method": "POST", "url": "https://your-zenml-server.example.com/api/v1/login", "body": { "type": "form-urlencoded", "data": [ { "name": "username", "value": "" }, { "name": "password", "value": "" } ] } }, "docs": "Login and Obtain Access Token" }, { "info": { "name": "Get Current Authenticated User", "type": "http" }, "http": { "method": "GET", "url": "https://your-zenml-server.example.com/api/v1/current-user" }, "docs": "Get Current Authenticated User" } ] } ], "bundled": true }