Socket
Socket
Sign inDemoInstall

bitbucket-swagger-client

Package Overview
Dependencies
121
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    bitbucket-swagger-client

Swagger based bitbucket client for API v2.0


Version published
Weekly downloads
0
Maintainers
1
Install size
5.26 MB
Created
Weekly downloads
 

Readme

Source

bitbucket_api

BitbucketApi - JavaScript client for bitbucket_api Code against the Bitbucket API to automate simple tasks, embed Bitbucket data into your own site, build mobile or desktop apps, or even add custom UI add-ons into Bitbucket itself using the Connect framework. This SDK is automatically generated by the OpenAPI Generator project:

Installation

For Node.js

npm

To publish the library as a npm, please follow the procedure in "Publishing npm packages".

Then install it via:

npm install bitbucket_api --save

Finally, you need to build the module:

npm run build
Local development

To use the library locally without publishing to a remote npm registry, first install the dependencies by changing into the directory containing package.json (and this README). Let's call this JAVASCRIPT_CLIENT_DIR. Then run:

npm install

Next, link it globally in npm with the following, also from JAVASCRIPT_CLIENT_DIR:

npm link

To use the link you just defined in your project, switch to the directory you want to use your bitbucket_api from, and run:

npm link /path/to/<JAVASCRIPT_CLIENT_DIR>

Finally, you need to build the module:

npm run build
git

If the library is hosted at a git repository, e.g.https://github.com/GIT_USER_ID/GIT_REPO_ID then install it via:

    npm install GIT_USER_ID/GIT_REPO_ID --save

For browser

The library also works in the browser environment via npm and browserify. After following the above steps with Node.js and installing browserify with npm install -g browserify, perform the following (assuming main.js is your entry file):

browserify main.js > bundle.js

Then include bundle.js in the HTML pages.

Webpack Configuration

Using Webpack you may encounter the following error: "Module not found: Error: Cannot resolve module", most certainly you should disable AMD loader. Add/merge the following section to your webpack config:

module: {
  rules: [
    {
      parser: {
        amd: false
      }
    }
  ]
}

Getting Started

Please follow the installation instruction and execute the following JS code:

var BitbucketApi = require('bitbucket_api');

var defaultClient = BitbucketApi.ApiClient.instance;
// Configure API key authorization: api_key
var api_key = defaultClient.authentications['api_key'];
api_key.apiKey = "YOUR API KEY"
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//api_key.apiKeyPrefix['Authorization'] = "Token"
// Configure HTTP basic authorization: basic
var basic = defaultClient.authentications['basic'];
basic.username = 'YOUR USERNAME'
basic.password = 'YOUR PASSWORD'
// Configure OAuth2 access token for authorization: oauth2
var oauth2 = defaultClient.authentications['oauth2'];
oauth2.accessToken = "YOUR ACCESS TOKEN"

var api = new BitbucketApi.AddonApi()
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.addonDelete(callback);

Documentation for API Endpoints

All URIs are relative to https://api.bitbucket.org/2.0

ClassMethodHTTP requestDescription
BitbucketApi.AddonApiaddonDeleteDELETE /addon
BitbucketApi.AddonApiaddonLinkersGetGET /addon/linkers
BitbucketApi.AddonApiaddonLinkersLinkerKeyGetGET /addon/linkers/{linker_key}
BitbucketApi.AddonApiaddonLinkersLinkerKeyValuesDeleteDELETE /addon/linkers/{linker_key}/values
BitbucketApi.AddonApiaddonLinkersLinkerKeyValuesDelete_0DELETE /addon/linkers/{linker_key}/values/
BitbucketApi.AddonApiaddonLinkersLinkerKeyValuesGetGET /addon/linkers/{linker_key}/values
BitbucketApi.AddonApiaddonLinkersLinkerKeyValuesGet_0GET /addon/linkers/{linker_key}/values/
BitbucketApi.AddonApiaddonLinkersLinkerKeyValuesPostPOST /addon/linkers/{linker_key}/values
BitbucketApi.AddonApiaddonLinkersLinkerKeyValuesPutPUT /addon/linkers/{linker_key}/values
BitbucketApi.AddonApiaddonPutPUT /addon
BitbucketApi.AddonApiaddonUsersTargetUserEventsEventKeyPostPOST /addon/users/{target_user}/events/{event_key}
BitbucketApi.BranchingModelApirepositoriesUsernameRepoSlugBranchingModelGetGET /repositories/{username}/{repo_slug}/branching-model
BitbucketApi.BranchingModelApirepositoriesUsernameRepoSlugBranchingModelSettingsGetGET /repositories/{username}/{repo_slug}/branching-model/settings
BitbucketApi.BranchingModelApirepositoriesUsernameRepoSlugBranchingModelSettingsPutPUT /repositories/{username}/{repo_slug}/branching-model/settings
BitbucketApi.BranchrestrictionsApirepositoriesUsernameRepoSlugBranchRestrictionsGetGET /repositories/{username}/{repo_slug}/branch-restrictions
BitbucketApi.BranchrestrictionsApirepositoriesUsernameRepoSlugBranchRestrictionsIdDeleteDELETE /repositories/{username}/{repo_slug}/branch-restrictions/{id}
BitbucketApi.BranchrestrictionsApirepositoriesUsernameRepoSlugBranchRestrictionsIdGetGET /repositories/{username}/{repo_slug}/branch-restrictions/{id}
BitbucketApi.BranchrestrictionsApirepositoriesUsernameRepoSlugBranchRestrictionsIdPutPUT /repositories/{username}/{repo_slug}/branch-restrictions/{id}
BitbucketApi.BranchrestrictionsApirepositoriesUsernameRepoSlugBranchRestrictionsPostPOST /repositories/{username}/{repo_slug}/branch-restrictions
BitbucketApi.CommitsApirepositoriesUsernameRepoSlugCommitNodeApproveDeleteDELETE /repositories/{username}/{repo_slug}/commit/{node}/approve
BitbucketApi.CommitsApirepositoriesUsernameRepoSlugCommitNodeApprovePostPOST /repositories/{username}/{repo_slug}/commit/{node}/approve
BitbucketApi.CommitsApirepositoriesUsernameRepoSlugCommitNodeCommentsCommentIdGetGET /repositories/{username}/{repo_slug}/commit/{node}/comments/{comment_id}
BitbucketApi.CommitsApirepositoriesUsernameRepoSlugCommitNodeCommentsGetGET /repositories/{username}/{repo_slug}/commit/{node}/comments
BitbucketApi.CommitsApirepositoriesUsernameRepoSlugCommitNodeCommentsPostPOST /repositories/{username}/{repo_slug}/commit/{node}/comments
BitbucketApi.CommitsApirepositoriesUsernameRepoSlugCommitNodeGetGET /repositories/{username}/{repo_slug}/commit/{node}
BitbucketApi.CommitsApirepositoriesUsernameRepoSlugCommitsGetGET /repositories/{username}/{repo_slug}/commits
BitbucketApi.CommitsApirepositoriesUsernameRepoSlugCommitsPostPOST /repositories/{username}/{repo_slug}/commits
BitbucketApi.CommitsApirepositoriesUsernameRepoSlugCommitsRevisionGetGET /repositories/{username}/{repo_slug}/commits/{revision}
BitbucketApi.CommitsApirepositoriesUsernameRepoSlugCommitsRevisionPostPOST /repositories/{username}/{repo_slug}/commits/{revision}
BitbucketApi.CommitsApirepositoriesUsernameRepoSlugDiffSpecGetGET /repositories/{username}/{repo_slug}/diff/{spec}
BitbucketApi.CommitsApirepositoriesUsernameRepoSlugPatchSpecGetGET /repositories/{username}/{repo_slug}/patch/{spec}
BitbucketApi.CommitstatusesApirepositoriesUsernameRepoSlugCommitNodeStatusesBuildKeyGetGET /repositories/{username}/{repo_slug}/commit/{node}/statuses/build/{key}
BitbucketApi.CommitstatusesApirepositoriesUsernameRepoSlugCommitNodeStatusesBuildKeyPutPUT /repositories/{username}/{repo_slug}/commit/{node}/statuses/build/{key}
BitbucketApi.CommitstatusesApirepositoriesUsernameRepoSlugCommitNodeStatusesBuildPostPOST /repositories/{username}/{repo_slug}/commit/{node}/statuses/build
BitbucketApi.CommitstatusesApirepositoriesUsernameRepoSlugCommitNodeStatusesGetGET /repositories/{username}/{repo_slug}/commit/{node}/statuses
BitbucketApi.CommitstatusesApirepositoriesUsernameRepoSlugPullrequestsPullRequestIdStatusesGetGET /repositories/{username}/{repo_slug}/pullrequests/{pull_request_id}/statuses
BitbucketApi.DefaultApirepositoriesUsernameRepoSlugDiffstatSpecGetGET /repositories/{username}/{repo_slug}/diffstat/{spec}
BitbucketApi.DefaultApirepositoriesUsernameRepoSlugIssuesExportPostPOST /repositories/{username}/{repo_slug}/issues/export
BitbucketApi.DefaultApirepositoriesUsernameRepoSlugIssuesExportRepoNameIssuesTaskIdZipGetGET /repositories/{username}/{repo_slug}/issues/export/{repo_name}-issues-{task_id}.zip
BitbucketApi.DefaultApirepositoriesUsernameRepoSlugIssuesImportGetGET /repositories/{username}/{repo_slug}/issues/import
BitbucketApi.DefaultApirepositoriesUsernameRepoSlugIssuesImportPostPOST /repositories/{username}/{repo_slug}/issues/import
BitbucketApi.DefaultApirepositoriesWorkspaceRepoSlugPipelinesPipelineUuidStepsStepUuidLogsLogUuidGetGET /repositories/{workspace}/{repo_slug}/pipelines/{pipeline_uuid}/steps/{step_uuid}/logs/{log_uuid}
BitbucketApi.DefaultApirepositoriesWorkspaceRepoSlugPipelinesPipelineUuidStepsStepUuidTestReportsGetGET /repositories/{workspace}/{repo_slug}/pipelines/{pipeline_uuid}/steps/{step_uuid}/test_reports
BitbucketApi.DefaultApirepositoriesWorkspaceRepoSlugPipelinesPipelineUuidStepsStepUuidTestReportsTestCasesGetGET /repositories/{workspace}/{repo_slug}/pipelines/{pipeline_uuid}/steps/{step_uuid}/test_reports/test_cases
BitbucketApi.DefaultApirepositoriesWorkspaceRepoSlugPipelinesPipelineUuidStepsStepUuidTestReportsTestCasesTestCaseUuidTestCaseReasonsGetGET /repositories/{workspace}/{repo_slug}/pipelines/{pipeline_uuid}/steps/{step_uuid}/test_reports/test_cases/{test_case_uuid}/test_case_reasons
BitbucketApi.DefaultApiteamsUsernamePermissionsGetGET /teams/{username}/permissions
BitbucketApi.DefaultApiteamsUsernamePermissionsRepositoriesGetGET /teams/{username}/permissions/repositories
BitbucketApi.DefaultApiteamsUsernamePermissionsRepositoriesRepoSlugGetGET /teams/{username}/permissions/repositories/{repo_slug}
BitbucketApi.DefaultApiuserPermissionsTeamsGetGET /user/permissions/teams
BitbucketApi.DeployApirepositoriesUsernameRepoSlugDeployKeysGetGET /repositories/{username}/{repo_slug}/deploy-keys
BitbucketApi.DeployApirepositoriesUsernameRepoSlugDeployKeysKeyIdDeleteDELETE /repositories/{username}/{repo_slug}/deploy-keys/{key_id}
BitbucketApi.DeployApirepositoriesUsernameRepoSlugDeployKeysKeyIdGetGET /repositories/{username}/{repo_slug}/deploy-keys/{key_id}
BitbucketApi.DeployApirepositoriesUsernameRepoSlugDeployKeysKeyIdPutPUT /repositories/{username}/{repo_slug}/deploy-keys/{key_id}
BitbucketApi.DeployApirepositoriesUsernameRepoSlugDeployKeysPostPOST /repositories/{username}/{repo_slug}/deploy-keys
BitbucketApi.DeploymentsApicreateEnvironmentPOST /repositories/{workspace}/{repo_slug}/environments/
BitbucketApi.DeploymentsApideleteEnvironmentForRepositoryDELETE /repositories/{workspace}/{repo_slug}/environments/{environment_uuid}
BitbucketApi.DeploymentsApigetDeploymentForRepositoryGET /repositories/{workspace}/{repo_slug}/deployments/{deployment_uuid}
BitbucketApi.DeploymentsApigetDeploymentsForRepositoryGET /repositories/{workspace}/{repo_slug}/deployments/
BitbucketApi.DeploymentsApigetEnvironmentForRepositoryGET /repositories/{workspace}/{repo_slug}/environments/{environment_uuid}
BitbucketApi.DeploymentsApigetEnvironmentsForRepositoryGET /repositories/{workspace}/{repo_slug}/environments/
BitbucketApi.DeploymentsApiupdateEnvironmentForRepositoryPOST /repositories/{workspace}/{repo_slug}/environments/{environment_uuid}/changes/
BitbucketApi.DownloadsApirepositoriesUsernameRepoSlugDownloadsFilenameDeleteDELETE /repositories/{username}/{repo_slug}/downloads/{filename}
BitbucketApi.DownloadsApirepositoriesUsernameRepoSlugDownloadsFilenameGetGET /repositories/{username}/{repo_slug}/downloads/{filename}
BitbucketApi.DownloadsApirepositoriesUsernameRepoSlugDownloadsGetGET /repositories/{username}/{repo_slug}/downloads
BitbucketApi.DownloadsApirepositoriesUsernameRepoSlugDownloadsPostPOST /repositories/{username}/{repo_slug}/downloads
BitbucketApi.IssueTrackerApirepositoriesUsernameRepoSlugComponentsComponentIdGetGET /repositories/{username}/{repo_slug}/components/{component_id}
BitbucketApi.IssueTrackerApirepositoriesUsernameRepoSlugComponentsGetGET /repositories/{username}/{repo_slug}/components
BitbucketApi.IssueTrackerApirepositoriesUsernameRepoSlugIssuesGetGET /repositories/{username}/{repo_slug}/issues
BitbucketApi.IssueTrackerApirepositoriesUsernameRepoSlugIssuesIssueIdAttachmentsGetGET /repositories/{username}/{repo_slug}/issues/{issue_id}/attachments
BitbucketApi.IssueTrackerApirepositoriesUsernameRepoSlugIssuesIssueIdAttachmentsPathDeleteDELETE /repositories/{username}/{repo_slug}/issues/{issue_id}/attachments/{path}
BitbucketApi.IssueTrackerApirepositoriesUsernameRepoSlugIssuesIssueIdAttachmentsPathGetGET /repositories/{username}/{repo_slug}/issues/{issue_id}/attachments/{path}
BitbucketApi.IssueTrackerApirepositoriesUsernameRepoSlugIssuesIssueIdAttachmentsPostPOST /repositories/{username}/{repo_slug}/issues/{issue_id}/attachments
BitbucketApi.IssueTrackerApirepositoriesUsernameRepoSlugIssuesIssueIdChangesChangeIdGetGET /repositories/{username}/{repo_slug}/issues/{issue_id}/changes/{change_id}
BitbucketApi.IssueTrackerApirepositoriesUsernameRepoSlugIssuesIssueIdChangesGetGET /repositories/{username}/{repo_slug}/issues/{issue_id}/changes
BitbucketApi.IssueTrackerApirepositoriesUsernameRepoSlugIssuesIssueIdChangesPostPOST /repositories/{username}/{repo_slug}/issues/{issue_id}/changes
BitbucketApi.IssueTrackerApirepositoriesUsernameRepoSlugIssuesIssueIdCommentsCommentIdDeleteDELETE /repositories/{username}/{repo_slug}/issues/{issue_id}/comments/{comment_id}
BitbucketApi.IssueTrackerApirepositoriesUsernameRepoSlugIssuesIssueIdCommentsCommentIdGetGET /repositories/{username}/{repo_slug}/issues/{issue_id}/comments/{comment_id}
BitbucketApi.IssueTrackerApirepositoriesUsernameRepoSlugIssuesIssueIdCommentsCommentIdPutPUT /repositories/{username}/{repo_slug}/issues/{issue_id}/comments/{comment_id}
BitbucketApi.IssueTrackerApirepositoriesUsernameRepoSlugIssuesIssueIdCommentsGetGET /repositories/{username}/{repo_slug}/issues/{issue_id}/comments
BitbucketApi.IssueTrackerApirepositoriesUsernameRepoSlugIssuesIssueIdCommentsPostPOST /repositories/{username}/{repo_slug}/issues/{issue_id}/comments
BitbucketApi.IssueTrackerApirepositoriesUsernameRepoSlugIssuesIssueIdDeleteDELETE /repositories/{username}/{repo_slug}/issues/{issue_id}
BitbucketApi.IssueTrackerApirepositoriesUsernameRepoSlugIssuesIssueIdGetGET /repositories/{username}/{repo_slug}/issues/{issue_id}
BitbucketApi.IssueTrackerApirepositoriesUsernameRepoSlugIssuesIssueIdPutPUT /repositories/{username}/{repo_slug}/issues/{issue_id}
BitbucketApi.IssueTrackerApirepositoriesUsernameRepoSlugIssuesIssueIdVoteDeleteDELETE /repositories/{username}/{repo_slug}/issues/{issue_id}/vote
BitbucketApi.IssueTrackerApirepositoriesUsernameRepoSlugIssuesIssueIdVoteGetGET /repositories/{username}/{repo_slug}/issues/{issue_id}/vote
BitbucketApi.IssueTrackerApirepositoriesUsernameRepoSlugIssuesIssueIdVotePutPUT /repositories/{username}/{repo_slug}/issues/{issue_id}/vote
BitbucketApi.IssueTrackerApirepositoriesUsernameRepoSlugIssuesIssueIdWatchDeleteDELETE /repositories/{username}/{repo_slug}/issues/{issue_id}/watch
BitbucketApi.IssueTrackerApirepositoriesUsernameRepoSlugIssuesIssueIdWatchGetGET /repositories/{username}/{repo_slug}/issues/{issue_id}/watch
BitbucketApi.IssueTrackerApirepositoriesUsernameRepoSlugIssuesIssueIdWatchPutPUT /repositories/{username}/{repo_slug}/issues/{issue_id}/watch
BitbucketApi.IssueTrackerApirepositoriesUsernameRepoSlugIssuesPostPOST /repositories/{username}/{repo_slug}/issues
BitbucketApi.IssueTrackerApirepositoriesUsernameRepoSlugMilestonesGetGET /repositories/{username}/{repo_slug}/milestones
BitbucketApi.IssueTrackerApirepositoriesUsernameRepoSlugMilestonesMilestoneIdGetGET /repositories/{username}/{repo_slug}/milestones/{milestone_id}
BitbucketApi.IssueTrackerApirepositoriesUsernameRepoSlugVersionsGetGET /repositories/{username}/{repo_slug}/versions
BitbucketApi.IssueTrackerApirepositoriesUsernameRepoSlugVersionsVersionIdGetGET /repositories/{username}/{repo_slug}/versions/{version_id}
BitbucketApi.PipelinesApicreateDeploymentVariablePOST /repositories/{workspace}/{repo_slug}/deployments_config/environments/{environment_uuid}/variables
BitbucketApi.PipelinesApicreatePipelineForRepositoryPOST /repositories/{workspace}/{repo_slug}/pipelines/
BitbucketApi.PipelinesApicreatePipelineVariableForTeamPOST /teams/{username}/pipelines_config/variables/
BitbucketApi.PipelinesApicreatePipelineVariableForUserPOST /users/{username}/pipelines_config/variables/
BitbucketApi.PipelinesApicreateRepositoryPipelineKnownHostPOST /repositories/{workspace}/{repo_slug}/pipelines_config/ssh/known_hosts/
BitbucketApi.PipelinesApicreateRepositoryPipelineSchedulePOST /repositories/{workspace}/{repo_slug}/pipelines_config/schedules/
BitbucketApi.PipelinesApicreateRepositoryPipelineVariablePOST /repositories/{workspace}/{repo_slug}/pipelines_config/variables/
BitbucketApi.PipelinesApideleteDeploymentVariableDELETE /repositories/{workspace}/{repo_slug}/deployments_config/environments/{environment_uuid}/variables/{variable_uuid}
BitbucketApi.PipelinesApideletePipelineVariableForTeamDELETE /teams/{username}/pipelines_config/variables/{variable_uuid}
BitbucketApi.PipelinesApideletePipelineVariableForUserDELETE /users/{username}/pipelines_config/variables/{variable_uuid}
BitbucketApi.PipelinesApideleteRepositoryPipelineKeyPairDELETE /repositories/{workspace}/{repo_slug}/pipelines_config/ssh/key_pair
BitbucketApi.PipelinesApideleteRepositoryPipelineKnownHostDELETE /repositories/{workspace}/{repo_slug}/pipelines_config/ssh/known_hosts/{known_host_uuid}
BitbucketApi.PipelinesApideleteRepositoryPipelineScheduleDELETE /repositories/{workspace}/{repo_slug}/pipelines_config/schedules/{schedule_uuid}
BitbucketApi.PipelinesApideleteRepositoryPipelineVariableDELETE /repositories/{workspace}/{repo_slug}/pipelines_config/variables/{variable_uuid}
BitbucketApi.PipelinesApigetDeploymentVariablesGET /repositories/{workspace}/{repo_slug}/deployments_config/environments/{environment_uuid}/variables
BitbucketApi.PipelinesApigetPipelineForRepositoryGET /repositories/{workspace}/{repo_slug}/pipelines/{pipeline_uuid}
BitbucketApi.PipelinesApigetPipelineStepForRepositoryGET /repositories/{workspace}/{repo_slug}/pipelines/{pipeline_uuid}/steps/{step_uuid}
BitbucketApi.PipelinesApigetPipelineStepLogForRepositoryGET /repositories/{workspace}/{repo_slug}/pipelines/{pipeline_uuid}/steps/{step_uuid}/log
BitbucketApi.PipelinesApigetPipelineStepsForRepositoryGET /repositories/{workspace}/{repo_slug}/pipelines/{pipeline_uuid}/steps/
BitbucketApi.PipelinesApigetPipelineVariableForTeamGET /teams/{username}/pipelines_config/variables/{variable_uuid}
BitbucketApi.PipelinesApigetPipelineVariableForUserGET /users/{username}/pipelines_config/variables/{variable_uuid}
BitbucketApi.PipelinesApigetPipelineVariablesForTeamGET /teams/{username}/pipelines_config/variables/
BitbucketApi.PipelinesApigetPipelineVariablesForUserGET /users/{username}/pipelines_config/variables/
BitbucketApi.PipelinesApigetPipelinesForRepositoryGET /repositories/{workspace}/{repo_slug}/pipelines/
BitbucketApi.PipelinesApigetRepositoryPipelineConfigGET /repositories/{workspace}/{repo_slug}/pipelines_config
BitbucketApi.PipelinesApigetRepositoryPipelineKnownHostGET /repositories/{workspace}/{repo_slug}/pipelines_config/ssh/known_hosts/{known_host_uuid}
BitbucketApi.PipelinesApigetRepositoryPipelineKnownHostsGET /repositories/{workspace}/{repo_slug}/pipelines_config/ssh/known_hosts/
BitbucketApi.PipelinesApigetRepositoryPipelineScheduleGET /repositories/{workspace}/{repo_slug}/pipelines_config/schedules/{schedule_uuid}
BitbucketApi.PipelinesApigetRepositoryPipelineScheduleExecutionsGET /repositories/{workspace}/{repo_slug}/pipelines_config/schedules/{schedule_uuid}/executions/
BitbucketApi.PipelinesApigetRepositoryPipelineSchedulesGET /repositories/{workspace}/{repo_slug}/pipelines_config/schedules/
BitbucketApi.PipelinesApigetRepositoryPipelineSshKeyPairGET /repositories/{workspace}/{repo_slug}/pipelines_config/ssh/key_pair
BitbucketApi.PipelinesApigetRepositoryPipelineVariableGET /repositories/{workspace}/{repo_slug}/pipelines_config/variables/{variable_uuid}
BitbucketApi.PipelinesApigetRepositoryPipelineVariablesGET /repositories/{workspace}/{repo_slug}/pipelines_config/variables/
BitbucketApi.PipelinesApistopPipelinePOST /repositories/{workspace}/{repo_slug}/pipelines/{pipeline_uuid}/stopPipeline
BitbucketApi.PipelinesApiupdateDeploymentVariablePUT /repositories/{workspace}/{repo_slug}/deployments_config/environments/{environment_uuid}/variables/{variable_uuid}
BitbucketApi.PipelinesApiupdatePipelineVariableForTeamPUT /teams/{username}/pipelines_config/variables/{variable_uuid}
BitbucketApi.PipelinesApiupdatePipelineVariableForUserPUT /users/{username}/pipelines_config/variables/{variable_uuid}
BitbucketApi.PipelinesApiupdateRepositoryBuildNumberPUT /repositories/{workspace}/{repo_slug}/pipelines_config/build_number
BitbucketApi.PipelinesApiupdateRepositoryPipelineConfigPUT /repositories/{workspace}/{repo_slug}/pipelines_config
BitbucketApi.PipelinesApiupdateRepositoryPipelineKeyPairPUT /repositories/{workspace}/{repo_slug}/pipelines_config/ssh/key_pair
BitbucketApi.PipelinesApiupdateRepositoryPipelineKnownHostPUT /repositories/{workspace}/{repo_slug}/pipelines_config/ssh/known_hosts/{known_host_uuid}
BitbucketApi.PipelinesApiupdateRepositoryPipelineSchedulePUT /repositories/{workspace}/{repo_slug}/pipelines_config/schedules/{schedule_uuid}
BitbucketApi.PipelinesApiupdateRepositoryPipelineVariablePUT /repositories/{workspace}/{repo_slug}/pipelines_config/variables/{variable_uuid}
BitbucketApi.ProjectsApiteamsUsernameProjectsGetGET /teams/{username}/projects/
BitbucketApi.ProjectsApiteamsUsernameProjectsPostPOST /teams/{username}/projects/
BitbucketApi.ProjectsApiteamsUsernameProjectsProjectKeyDeleteDELETE /teams/{username}/projects/{project_key}
BitbucketApi.ProjectsApiteamsUsernameProjectsProjectKeyGetGET /teams/{username}/projects/{project_key}
BitbucketApi.ProjectsApiteamsUsernameProjectsProjectKeyPutPUT /teams/{username}/projects/{project_key}
BitbucketApi.PropertiesApideleteCommitHostedPropertyValueDELETE /repositories/{workspace}/{repo_slug}/commit/{commit}/properties/{app_key}/{property_name}
BitbucketApi.PropertiesApideletePullRequestHostedPropertyValueDELETE /repositories/{workspace}/{repo_slug}/pullrequests/{pullrequest_id}/properties/{app_key}/{property_name}
BitbucketApi.PropertiesApideleteRepositoryHostedPropertyValueDELETE /repositories/{workspace}/{repo_slug}/properties/{app_key}/{property_name}
BitbucketApi.PropertiesApideleteUserHostedPropertyValueDELETE /users/{username}/properties/{app_key}/{property_name}
BitbucketApi.PropertiesApigetCommitHostedPropertyValueGET /repositories/{workspace}/{repo_slug}/commit/{commit}/properties/{app_key}/{property_name}
BitbucketApi.PropertiesApigetPullRequestHostedPropertyValueGET /repositories/{workspace}/{repo_slug}/pullrequests/{pullrequest_id}/properties/{app_key}/{property_name}
BitbucketApi.PropertiesApigetRepositoryHostedPropertyValueGET /repositories/{workspace}/{repo_slug}/properties/{app_key}/{property_name}
BitbucketApi.PropertiesApiretrieveUserHostedPropertyValueGET /users/{username}/properties/{app_key}/{property_name}
BitbucketApi.PropertiesApiupdateCommitHostedPropertyValuePUT /repositories/{workspace}/{repo_slug}/commit/{commit}/properties/{app_key}/{property_name}
BitbucketApi.PropertiesApiupdatePullRequestHostedPropertyValuePUT /repositories/{workspace}/{repo_slug}/pullrequests/{pullrequest_id}/properties/{app_key}/{property_name}
BitbucketApi.PropertiesApiupdateRepositoryHostedPropertyValuePUT /repositories/{workspace}/{repo_slug}/properties/{app_key}/{property_name}
BitbucketApi.PropertiesApiupdateUserHostedPropertyValuePUT /users/{username}/properties/{app_key}/{property_name}
BitbucketApi.PullrequestsApigetPullrequestsForCommitGET /repositories/{workspace}/{repo_slug}/commit/{commit}/pullrequestsReturns a paginated list of all pull requests as part of which this commit was reviewed.
BitbucketApi.PullrequestsApipullrequestsTargetUserGetGET /pullrequests/{target_user}
BitbucketApi.PullrequestsApirepositoriesUsernameRepoSlugDefaultReviewersGetGET /repositories/{username}/{repo_slug}/default-reviewers
BitbucketApi.PullrequestsApirepositoriesUsernameRepoSlugDefaultReviewersTargetUsernameDeleteDELETE /repositories/{username}/{repo_slug}/default-reviewers/{target_username}
BitbucketApi.PullrequestsApirepositoriesUsernameRepoSlugDefaultReviewersTargetUsernameGetGET /repositories/{username}/{repo_slug}/default-reviewers/{target_username}
BitbucketApi.PullrequestsApirepositoriesUsernameRepoSlugDefaultReviewersTargetUsernamePutPUT /repositories/{username}/{repo_slug}/default-reviewers/{target_username}
BitbucketApi.PullrequestsApirepositoriesUsernameRepoSlugPullrequestsActivityGetGET /repositories/{username}/{repo_slug}/pullrequests/activity
BitbucketApi.PullrequestsApirepositoriesUsernameRepoSlugPullrequestsGetGET /repositories/{username}/{repo_slug}/pullrequests
BitbucketApi.PullrequestsApirepositoriesUsernameRepoSlugPullrequestsPostPOST /repositories/{username}/{repo_slug}/pullrequests
BitbucketApi.PullrequestsApirepositoriesUsernameRepoSlugPullrequestsPullRequestIdActivityGetGET /repositories/{username}/{repo_slug}/pullrequests/{pull_request_id}/activity
BitbucketApi.PullrequestsApirepositoriesUsernameRepoSlugPullrequestsPullRequestIdApproveDeleteDELETE /repositories/{username}/{repo_slug}/pullrequests/{pull_request_id}/approve
BitbucketApi.PullrequestsApirepositoriesUsernameRepoSlugPullrequestsPullRequestIdApprovePostPOST /repositories/{username}/{repo_slug}/pullrequests/{pull_request_id}/approve
BitbucketApi.PullrequestsApirepositoriesUsernameRepoSlugPullrequestsPullRequestIdCommentsCommentIdDeleteDELETE /repositories/{username}/{repo_slug}/pullrequests/{pull_request_id}/comments/{comment_id}
BitbucketApi.PullrequestsApirepositoriesUsernameRepoSlugPullrequestsPullRequestIdCommentsCommentIdGetGET /repositories/{username}/{repo_slug}/pullrequests/{pull_request_id}/comments/{comment_id}
BitbucketApi.PullrequestsApirepositoriesUsernameRepoSlugPullrequestsPullRequestIdCommentsCommentIdPutPUT /repositories/{username}/{repo_slug}/pullrequests/{pull_request_id}/comments/{comment_id}
BitbucketApi.PullrequestsApirepositoriesUsernameRepoSlugPullrequestsPullRequestIdCommentsGetGET /repositories/{username}/{repo_slug}/pullrequests/{pull_request_id}/comments
BitbucketApi.PullrequestsApirepositoriesUsernameRepoSlugPullrequestsPullRequestIdCommentsPostPOST /repositories/{username}/{repo_slug}/pullrequests/{pull_request_id}/comments
BitbucketApi.PullrequestsApirepositoriesUsernameRepoSlugPullrequestsPullRequestIdCommitsGetGET /repositories/{username}/{repo_slug}/pullrequests/{pull_request_id}/commits
BitbucketApi.PullrequestsApirepositoriesUsernameRepoSlugPullrequestsPullRequestIdDeclinePostPOST /repositories/{username}/{repo_slug}/pullrequests/{pull_request_id}/decline
BitbucketApi.PullrequestsApirepositoriesUsernameRepoSlugPullrequestsPullRequestIdDiffGetGET /repositories/{username}/{repo_slug}/pullrequests/{pull_request_id}/diff
BitbucketApi.PullrequestsApirepositoriesUsernameRepoSlugPullrequestsPullRequestIdDiffstatGetGET /repositories/{username}/{repo_slug}/pullrequests/{pull_request_id}/diffstat
BitbucketApi.PullrequestsApirepositoriesUsernameRepoSlugPullrequestsPullRequestIdGetGET /repositories/{username}/{repo_slug}/pullrequests/{pull_request_id}
BitbucketApi.PullrequestsApirepositoriesUsernameRepoSlugPullrequestsPullRequestIdMergePostPOST /repositories/{username}/{repo_slug}/pullrequests/{pull_request_id}/merge
BitbucketApi.PullrequestsApirepositoriesUsernameRepoSlugPullrequestsPullRequestIdPatchGetGET /repositories/{username}/{repo_slug}/pullrequests/{pull_request_id}/patch
BitbucketApi.PullrequestsApirepositoriesUsernameRepoSlugPullrequestsPullRequestIdPutPUT /repositories/{username}/{repo_slug}/pullrequests/{pull_request_id}
BitbucketApi.PullrequestsApirepositoriesUsernameRepoSlugPullrequestsPullRequestIdStatusesGetGET /repositories/{username}/{repo_slug}/pullrequests/{pull_request_id}/statuses
BitbucketApi.RefsApirepositoriesUsernameRepoSlugRefsBranchesGetGET /repositories/{username}/{repo_slug}/refs/branches
BitbucketApi.RefsApirepositoriesUsernameRepoSlugRefsBranchesNameDeleteDELETE /repositories/{username}/{repo_slug}/refs/branches/{name}
BitbucketApi.RefsApirepositoriesUsernameRepoSlugRefsBranchesNameGetGET /repositories/{username}/{repo_slug}/refs/branches/{name}
BitbucketApi.RefsApirepositoriesUsernameRepoSlugRefsBranchesPostPOST /repositories/{username}/{repo_slug}/refs/branches
BitbucketApi.RefsApirepositoriesUsernameRepoSlugRefsGetGET /repositories/{username}/{repo_slug}/refs
BitbucketApi.RefsApirepositoriesUsernameRepoSlugRefsTagsGetGET /repositories/{username}/{repo_slug}/refs/tags
BitbucketApi.RefsApirepositoriesUsernameRepoSlugRefsTagsNameDeleteDELETE /repositories/{username}/{repo_slug}/refs/tags/{name}
BitbucketApi.RefsApirepositoriesUsernameRepoSlugRefsTagsNameGetGET /repositories/{username}/{repo_slug}/refs/tags/{name}
BitbucketApi.RefsApirepositoriesUsernameRepoSlugRefsTagsPostPOST /repositories/{username}/{repo_slug}/refs/tags
BitbucketApi.RepositoriesApirepositoriesGetGET /repositories
BitbucketApi.RepositoriesApirepositoriesUsernameGetGET /repositories/{username}
BitbucketApi.RepositoriesApirepositoriesUsernameRepoSlugCommitNodeStatusesBuildKeyGetGET /repositories/{username}/{repo_slug}/commit/{node}/statuses/build/{key}
BitbucketApi.RepositoriesApirepositoriesUsernameRepoSlugCommitNodeStatusesBuildKeyPutPUT /repositories/{username}/{repo_slug}/commit/{node}/statuses/build/{key}
BitbucketApi.RepositoriesApirepositoriesUsernameRepoSlugCommitNodeStatusesBuildPostPOST /repositories/{username}/{repo_slug}/commit/{node}/statuses/build
BitbucketApi.RepositoriesApirepositoriesUsernameRepoSlugCommitNodeStatusesGetGET /repositories/{username}/{repo_slug}/commit/{node}/statuses
BitbucketApi.RepositoriesApirepositoriesUsernameRepoSlugDeleteDELETE /repositories/{username}/{repo_slug}
BitbucketApi.RepositoriesApirepositoriesUsernameRepoSlugFilehistoryNodePathGetGET /repositories/{username}/{repo_slug}/filehistory/{node}/{path}
BitbucketApi.RepositoriesApirepositoriesUsernameRepoSlugForksGetGET /repositories/{username}/{repo_slug}/forks
BitbucketApi.RepositoriesApirepositoriesUsernameRepoSlugForksPostPOST /repositories/{username}/{repo_slug}/forks
BitbucketApi.RepositoriesApirepositoriesUsernameRepoSlugGetGET /repositories/{username}/{repo_slug}
BitbucketApi.RepositoriesApirepositoriesUsernameRepoSlugHooksGetGET /repositories/{username}/{repo_slug}/hooks
BitbucketApi.RepositoriesApirepositoriesUsernameRepoSlugHooksPostPOST /repositories/{username}/{repo_slug}/hooks
BitbucketApi.RepositoriesApirepositoriesUsernameRepoSlugHooksUidDeleteDELETE /repositories/{username}/{repo_slug}/hooks/{uid}
BitbucketApi.RepositoriesApirepositoriesUsernameRepoSlugHooksUidGetGET /repositories/{username}/{repo_slug}/hooks/{uid}
BitbucketApi.RepositoriesApirepositoriesUsernameRepoSlugHooksUidPutPUT /repositories/{username}/{repo_slug}/hooks/{uid}
BitbucketApi.RepositoriesApirepositoriesUsernameRepoSlugPostPOST /repositories/{username}/{repo_slug}
BitbucketApi.RepositoriesApirepositoriesUsernameRepoSlugPullrequestsPullRequestIdStatusesGetGET /repositories/{username}/{repo_slug}/pullrequests/{pull_request_id}/statuses
BitbucketApi.RepositoriesApirepositoriesUsernameRepoSlugPutPUT /repositories/{username}/{repo_slug}
BitbucketApi.RepositoriesApirepositoriesUsernameRepoSlugSrcGetGET /repositories/{username}/{repo_slug}/src
BitbucketApi.RepositoriesApirepositoriesUsernameRepoSlugSrcNodePathGetGET /repositories/{username}/{repo_slug}/src/{node}/{path}
BitbucketApi.RepositoriesApirepositoriesUsernameRepoSlugSrcPostPOST /repositories/{username}/{repo_slug}/src
BitbucketApi.RepositoriesApirepositoriesUsernameRepoSlugWatchersGetGET /repositories/{username}/{repo_slug}/watchers
BitbucketApi.RepositoriesApiuserPermissionsRepositoriesGetGET /user/permissions/repositories
BitbucketApi.SearchApisearchAccountGET /teams/{username}/search/codeSearch for code in the repositories of the specified team
BitbucketApi.SearchApisearchAccount_0GET /users/{username}/search/codeSearch for code in the repositories of the specified user
BitbucketApi.SnippetApisnippetsUsernameEncodedIdFilesPathGetGET /snippets/{username}/{encoded_id}/files/{path}
BitbucketApi.SnippetsApisnippetsGetGET /snippets
BitbucketApi.SnippetsApisnippetsPostPOST /snippets
BitbucketApi.SnippetsApisnippetsUsernameEncodedIdCommentsCommentIdDeleteDELETE /snippets/{username}/{encoded_id}/comments/{comment_id}
BitbucketApi.SnippetsApisnippetsUsernameEncodedIdCommentsCommentIdGetGET /snippets/{username}/{encoded_id}/comments/{comment_id}
BitbucketApi.SnippetsApisnippetsUsernameEncodedIdCommentsCommentIdPutPUT /snippets/{username}/{encoded_id}/comments/{comment_id}
BitbucketApi.SnippetsApisnippetsUsernameEncodedIdCommentsGetGET /snippets/{username}/{encoded_id}/comments
BitbucketApi.SnippetsApisnippetsUsernameEncodedIdCommentsPostPOST /snippets/{username}/{encoded_id}/comments
BitbucketApi.SnippetsApisnippetsUsernameEncodedIdCommitsGetGET /snippets/{username}/{encoded_id}/commits
BitbucketApi.SnippetsApisnippetsUsernameEncodedIdCommitsRevisionGetGET /snippets/{username}/{encoded_id}/commits/{revision}
BitbucketApi.SnippetsApisnippetsUsernameEncodedIdDeleteDELETE /snippets/{username}/{encoded_id}
BitbucketApi.SnippetsApisnippetsUsernameEncodedIdGetGET /snippets/{username}/{encoded_id}
BitbucketApi.SnippetsApisnippetsUsernameEncodedIdNodeIdDeleteDELETE /snippets/{username}/{encoded_id}/{node_id}
BitbucketApi.SnippetsApisnippetsUsernameEncodedIdNodeIdFilesPathGetGET /snippets/{username}/{encoded_id}/{node_id}/files/{path}
BitbucketApi.SnippetsApisnippetsUsernameEncodedIdNodeIdGetGET /snippets/{username}/{encoded_id}/{node_id}
BitbucketApi.SnippetsApisnippetsUsernameEncodedIdNodeIdPutPUT /snippets/{username}/{encoded_id}/{node_id}
BitbucketApi.SnippetsApisnippetsUsernameEncodedIdPutPUT /snippets/{username}/{encoded_id}
BitbucketApi.SnippetsApisnippetsUsernameEncodedIdRevisionDiffGetGET /snippets/{username}/{encoded_id}/{revision}/diff
BitbucketApi.SnippetsApisnippetsUsernameEncodedIdRevisionPatchGetGET /snippets/{username}/{encoded_id}/{revision}/patch
BitbucketApi.SnippetsApisnippetsUsernameEncodedIdWatchDeleteDELETE /snippets/{username}/{encoded_id}/watch
BitbucketApi.SnippetsApisnippetsUsernameEncodedIdWatchGetGET /snippets/{username}/{encoded_id}/watch
BitbucketApi.SnippetsApisnippetsUsernameEncodedIdWatchPutPUT /snippets/{username}/{encoded_id}/watch
BitbucketApi.SnippetsApisnippetsUsernameEncodedIdWatchersGetGET /snippets/{username}/{encoded_id}/watchers
BitbucketApi.SnippetsApisnippetsUsernameGetGET /snippets/{username}
BitbucketApi.SnippetsApisnippetsUsernamePostPOST /snippets/{username}
BitbucketApi.SourceApirepositoriesUsernameRepoSlugFilehistoryNodePathGetGET /repositories/{username}/{repo_slug}/filehistory/{node}/{path}
BitbucketApi.SourceApirepositoriesUsernameRepoSlugSrcGetGET /repositories/{username}/{repo_slug}/src
BitbucketApi.SourceApirepositoriesUsernameRepoSlugSrcNodePathGetGET /repositories/{username}/{repo_slug}/src/{node}/{path}
BitbucketApi.SourceApirepositoriesUsernameRepoSlugSrcPostPOST /repositories/{username}/{repo_slug}/src
BitbucketApi.SshApiusersUsernameSshKeysDeleteDELETE /users/{username}/ssh-keys/
BitbucketApi.SshApiusersUsernameSshKeysGetGET /users/{username}/ssh-keys/
BitbucketApi.SshApiusersUsernameSshKeysGet_0GET /users/{username}/ssh-keys
BitbucketApi.SshApiusersUsernameSshKeysPostPOST /users/{username}/ssh-keys
BitbucketApi.SshApiusersUsernameSshKeysPutPUT /users/{username}/ssh-keys/
BitbucketApi.TeamsApiteamsGetGET /teams
BitbucketApi.TeamsApiteamsUsernameFollowersGetGET /teams/{username}/followers
BitbucketApi.TeamsApiteamsUsernameFollowingGetGET /teams/{username}/following
BitbucketApi.TeamsApiteamsUsernameGetGET /teams/{username}
BitbucketApi.TeamsApiteamsUsernameHooksGetGET /teams/{username}/hooks
BitbucketApi.TeamsApiteamsUsernameHooksPostPOST /teams/{username}/hooks
BitbucketApi.TeamsApiteamsUsernameHooksUidDeleteDELETE /teams/{username}/hooks/{uid}
BitbucketApi.TeamsApiteamsUsernameHooksUidGetGET /teams/{username}/hooks/{uid}
BitbucketApi.TeamsApiteamsUsernameHooksUidPutPUT /teams/{username}/hooks/{uid}
BitbucketApi.TeamsApiteamsUsernameMembersGetGET /teams/{username}/members
BitbucketApi.TeamsApiteamsUsernameRepositoriesGetGET /teams/{username}/repositories
BitbucketApi.TeamsApiusersUsernameMembersGetGET /users/{username}/members
BitbucketApi.TeamsApiusersUsernameRepositoriesGetGET /users/{username}/repositories
BitbucketApi.UsersApiteamsUsernameRepositoriesGetGET /teams/{username}/repositories
BitbucketApi.UsersApiuserEmailsEmailGetGET /user/emails/{email}
BitbucketApi.UsersApiuserEmailsGetGET /user/emails
BitbucketApi.UsersApiuserGetGET /user
BitbucketApi.UsersApiusersUsernameFollowersGetGET /users/{username}/followers
BitbucketApi.UsersApiusersUsernameFollowingGetGET /users/{username}/following
BitbucketApi.UsersApiusersUsernameGetGET /users/{username}
BitbucketApi.UsersApiusersUsernameHooksGetGET /users/{username}/hooks
BitbucketApi.UsersApiusersUsernameHooksPostPOST /users/{username}/hooks
BitbucketApi.UsersApiusersUsernameHooksUidDeleteDELETE /users/{username}/hooks/{uid}
BitbucketApi.UsersApiusersUsernameHooksUidGetGET /users/{username}/hooks/{uid}
BitbucketApi.UsersApiusersUsernameHooksUidPutPUT /users/{username}/hooks/{uid}
BitbucketApi.UsersApiusersUsernameRepositoriesGetGET /users/{username}/repositories
BitbucketApi.WebhooksApihookEventsGetGET /hook_events
BitbucketApi.WebhooksApihookEventsSubjectTypeGetGET /hook_events/{subject_type}
BitbucketApi.WebhooksApirepositoriesUsernameRepoSlugHooksGetGET /repositories/{username}/{repo_slug}/hooks
BitbucketApi.WebhooksApirepositoriesUsernameRepoSlugHooksPostPOST /repositories/{username}/{repo_slug}/hooks
BitbucketApi.WebhooksApirepositoriesUsernameRepoSlugHooksUidDeleteDELETE /repositories/{username}/{repo_slug}/hooks/{uid}
BitbucketApi.WebhooksApirepositoriesUsernameRepoSlugHooksUidGetGET /repositories/{username}/{repo_slug}/hooks/{uid}
BitbucketApi.WebhooksApirepositoriesUsernameRepoSlugHooksUidPutPUT /repositories/{username}/{repo_slug}/hooks/{uid}
BitbucketApi.WebhooksApiteamsUsernameHooksGetGET /teams/{username}/hooks
BitbucketApi.WebhooksApiteamsUsernameHooksPostPOST /teams/{username}/hooks
BitbucketApi.WebhooksApiteamsUsernameHooksUidDeleteDELETE /teams/{username}/hooks/{uid}
BitbucketApi.WebhooksApiteamsUsernameHooksUidGetGET /teams/{username}/hooks/{uid}
BitbucketApi.WebhooksApiteamsUsernameHooksUidPutPUT /teams/{username}/hooks/{uid}
BitbucketApi.WebhooksApiusersUsernameHooksGetGET /users/{username}/hooks
BitbucketApi.WebhooksApiusersUsernameHooksPostPOST /users/{username}/hooks
BitbucketApi.WebhooksApiusersUsernameHooksUidDeleteDELETE /users/{username}/hooks/{uid}
BitbucketApi.WebhooksApiusersUsernameHooksUidGetGET /users/{username}/hooks/{uid}
BitbucketApi.WebhooksApiusersUsernameHooksUidPutPUT /users/{username}/hooks/{uid}

Documentation for Models

Documentation for Authorization

api_key

  • Type: API key
  • API key parameter name: Authorization
  • Location: HTTP header

basic

  • Type: HTTP basic authentication

oauth2

  • Type: OAuth
  • Flow: accessCode
  • Authorization URL: https://bitbucket.org/site/oauth2/authorize
  • Scopes:
    • wiki: Read and modify your repositories' wikis
    • pullrequest:write: Read and modify your repositories and their pull requests
    • pipeline:variable: Access your repositories' build pipelines and configure their variables
    • project:write: Read and modify your workspace's project settings, and read and transfer repositories within your workspace's projects
    • pipeline:write: Access and rerun your repositories' build pipelines
    • snippet: Read your snippets
    • repository:delete: Delete your repositories
    • repository:write: Read and modify your repositories
    • issue: Read your repositories' issues
    • email: Read your account's primary email address
    • repository: Read your repositories
    • issue:write: Read and modify your repositories' issues
    • webhook: Read and modify your repositories' webhooks
    • pipeline: Access your repositories' build pipelines
    • snippet:write: Read and modify your snippets
    • account: Read your account information
    • repository:admin: Administer your repositories
    • pullrequest: Read your repositories and their pull requests
    • project: Read your workspace's project settings and read repositories contained within your workspace's projects
    • team: Read your team membership information
    • team:write: Read and modify your team membership information
    • account:write: Read and modify your account information

FAQs

Last updated on 20 Nov 2019

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc