{ "opencollection": "1.0.0", "info": { "name": "Atlassian Admin Account Runs API", "version": "1.0.0" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Runs", "type": "folder" }, "items": [ { "info": { "name": "Atlassian Run Pipeline", "type": "http" }, "http": { "method": "POST", "url": "https://api.atlassian.com/repositories/:workspace/:repo_slug/pipelines", "params": [ { "name": "workspace", "value": "", "type": "path", "description": "This can either be the workspace ID (slug) or the workspace UUID surrounded by curly-braces, for example `{workspace UUID}`." }, { "name": "repo_slug", "value": "", "type": "path", "description": "The repository." } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "oauth2", "flow": "authorization_code", "authorizationUrl": "https://auth.atlassian.com/authorize", "accessTokenUrl": "https://auth.atlassian.com/oauth/token", "credentials": { "clientId": "{{clientId}}", "clientSecret": "{{clientSecret}}" } } }, "docs": "The Run Pipeline operation in Atlassian Bitbucket's Repositories API allows users to programmatically trigger a pipeline execution for a specific repository by making a POST request to the /repositories/{workspace}/{repo_slug}/pipelines endpoint. This operation requires specifying the workspace and repository slug in the URL path, and typically accepts a request body containing configuration details such as the target branch, commit, or pipeline selector to determine which pipeline definition sh" } ] } ], "bundled": true }