{ "opencollection": "1.0.0", "info": { "name": "Percy REST Builds Projects API", "version": "1.0" }, "request": { "auth": { "type": "apikey", "key": "Authorization", "value": "{{Authorization}}", "placement": "header" } }, "items": [ { "info": { "name": "Projects", "type": "folder" }, "items": [ { "info": { "name": "Get project details", "type": "http" }, "http": { "method": "GET", "url": "https://percy.io/api/v1/projects", "auth": { "type": "apikey", "key": "Authorization", "value": "{{Authorization}}", "placement": "header" } }, "docs": "Retrieves the details of the project associated with the given project token." }, { "info": { "name": "Create a project", "type": "http" }, "http": { "method": "POST", "url": "https://percy.io/api/v1/projects", "body": { "type": "json", "data": "{}" }, "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "docs": "Creates a web or app project programmatically. Authenticates with BrowserStack HTTP Basic auth (username and access key)." }, { "info": { "name": "Update project settings", "type": "http" }, "http": { "method": "PATCH", "url": "https://percy.io/api/v1/projects/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "The project's full slug or numeric ID." } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "docs": "Updates one or more settings on an existing project. The id accepts either the project's full slug or its numeric ID. Authenticates with BrowserStack HTTP Basic auth." } ] } ], "bundled": true }