{ "opencollection": "1.0.0", "info": { "name": "Atlassian Admin Account Schedule API", "version": "1.0.0" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Schedule", "type": "folder" }, "items": [ { "info": { "name": "Atlassian Create Schedule", "type": "http" }, "http": { "method": "POST", "url": "https://api.atlassian.com/repositories/:workspace/:repo_slug/pipelines_config/schedules", "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": "Creates a new pipeline schedule for the specified repository in Bitbucket, allowing you to automate pipeline executions at defined intervals or specific times. This endpoint requires you to provide the workspace identifier and repository slug in the path, along with schedule configuration details in the request body such as the cron expression, target branch or tag, and whether the schedule is enabled. The schedule determines when pipelines will automatically trigger without manual intervention," } ] } ], "bundled": true }