{ "opencollection": "1.0.0", "info": { "name": "StackHawk Api Authentication Repositories API", "version": "0.0.1" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Repositories", "type": "folder" }, "items": [ { "info": { "name": "List Repositories", "type": "http" }, "http": { "method": "GET", "url": "https://api.stackhawk.com/api/v1/org/:orgId/repository", "params": [ { "name": "orgId", "value": "", "type": "path" } ] }, "docs": "List all repositories for an organization." }, { "info": { "name": "Create Repository", "type": "http" }, "http": { "method": "POST", "url": "https://api.stackhawk.com/api/v1/org/:orgId/repository", "params": [ { "name": "orgId", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Register a new repository with an organization." }, { "info": { "name": "Get Repository", "type": "http" }, "http": { "method": "GET", "url": "https://api.stackhawk.com/api/v1/org/:orgId/repository/:repoId", "params": [ { "name": "orgId", "value": "", "type": "path" }, { "name": "repoId", "value": "", "type": "path" } ] }, "docs": "Retrieve details for a specific repository." }, { "info": { "name": "Update Repository", "type": "http" }, "http": { "method": "POST", "url": "https://api.stackhawk.com/api/v1/org/:orgId/repository/:repoId", "params": [ { "name": "orgId", "value": "", "type": "path" }, { "name": "repoId", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Update repository configuration." }, { "info": { "name": "Delete Repository", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.stackhawk.com/api/v1/org/:orgId/repository/:repoId", "params": [ { "name": "orgId", "value": "", "type": "path" }, { "name": "repoId", "value": "", "type": "path" } ] }, "docs": "Remove a repository from an organization." } ] } ], "bundled": true }