{ "opencollection": "1.0.0", "info": { "name": "Fast admin teams API", "version": "0.1.0" }, "items": [ { "info": { "name": "teams", "type": "folder" }, "items": [ { "info": { "name": "Teams:List", "type": "http" }, "http": { "method": "GET", "url": "/api/teams/", "params": [ { "name": "page", "value": "", "type": "query" }, { "name": "size", "value": "", "type": "query" } ], "auth": { "type": "oauth2", "flow": "resource_owner_password_credentials", "accessTokenUrl": "auth/jwt/login", "credentials": { "clientId": "{{clientId}}", "clientSecret": "{{clientSecret}}" } } }, "docs": "List the teams of the current user." }, { "info": { "name": "Teams:Create", "type": "http" }, "http": { "method": "POST", "url": "/api/teams/", "body": { "type": "json", "data": "{}" }, "auth": { "type": "oauth2", "flow": "resource_owner_password_credentials", "accessTokenUrl": "auth/jwt/login", "credentials": { "clientId": "{{clientId}}", "clientSecret": "{{clientSecret}}" } } }, "docs": "Create a team." }, { "info": { "name": "Teams:Get", "type": "http" }, "http": { "method": "GET", "url": "/api/teams/:team_id", "params": [ { "name": "team_id", "value": "", "type": "path" } ], "auth": { "type": "oauth2", "flow": "resource_owner_password_credentials", "accessTokenUrl": "auth/jwt/login", "credentials": { "clientId": "{{clientId}}", "clientSecret": "{{clientSecret}}" } } }, "docs": "Read a team." } ] } ], "bundled": true }