{ "opencollection": "1.0.0", "info": { "name": "Secure Code Warrior Portal Assessments Teams API", "version": "2.0.0" }, "request": { "auth": { "type": "apikey", "key": "X-API-Key", "value": "{{X-API-Key}}", "placement": "header" } }, "items": [ { "info": { "name": "Teams", "type": "folder" }, "items": [ { "info": { "name": "List Teams", "type": "http" }, "http": { "method": "GET", "url": "https://portal-api.securecodewarrior.com/api/v2/teams", "params": [ { "name": "page", "value": "", "type": "query" }, { "name": "name", "value": "", "type": "query", "description": "Filter by team name" } ] }, "docs": "Returns a list of Team objects within the organization." }, { "info": { "name": "Create Team", "type": "http" }, "http": { "method": "POST", "url": "https://portal-api.securecodewarrior.com/api/v2/team", "body": { "type": "json", "data": "{}" } }, "docs": "Create a new team within the organization." }, { "info": { "name": "Get Team", "type": "http" }, "http": { "method": "GET", "url": "https://portal-api.securecodewarrior.com/api/v2/team/:team_id", "params": [ { "name": "team_id", "value": "", "type": "path" } ] }, "docs": "Retrieve team details and configuration." }, { "info": { "name": "Update Team", "type": "http" }, "http": { "method": "PATCH", "url": "https://portal-api.securecodewarrior.com/api/v2/team/:team_id", "params": [ { "name": "team_id", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Update team properties." }, { "info": { "name": "Delete Team", "type": "http" }, "http": { "method": "DELETE", "url": "https://portal-api.securecodewarrior.com/api/v2/team/:team_id", "params": [ { "name": "team_id", "value": "", "type": "path" } ] }, "docs": "Remove a team from the organization." } ] } ], "bundled": true }