All URIs are relative to https://api.bitbucket.org/2.0
Method | HTTP request | Description |
---|---|---|
UsersSelectedUserSshKeysGet | Get /users/{selected_user}/ssh-keys | List SSH keys |
UsersSelectedUserSshKeysKeyIdDelete | Delete /users/{selected_user}/ssh-keys/{key_id} | Delete a SSH key |
UsersSelectedUserSshKeysKeyIdGet | Get /users/{selected_user}/ssh-keys/{key_id} | Get a SSH key |
UsersSelectedUserSshKeysKeyIdPut | Put /users/{selected_user}/ssh-keys/{key_id} | Update a SSH key |
UsersSelectedUserSshKeysPost | Post /users/{selected_user}/ssh-keys | Add a new SSH key |
PaginatedSshUserKeys UsersSelectedUserSshKeysGet(ctx, selectedUser, optional) List SSH keys
Returns a paginated list of the user's SSH public keys.
Name | Type | Description | Notes |
---|---|---|---|
ctx | context.Context | context for authentication, logging, cancellation, deadlines, tracing, etc. | |
selectedUser | string | This can either be an Atlassian Account ID OR the UUID of the account, surrounded by curly-braces, for example: `{account UUID}`. | |
optional | *SshApiUsersSelectedUserSshKeysGetOpts | optional parameters | nil if no parameters |
Optional parameters are passed through a pointer to a SshApiUsersSelectedUserSshKeysGetOpts struct
Name | Type | Description | Notes |
---|
page | optional.Int32| page |
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
UsersSelectedUserSshKeysKeyIdDelete(ctx, keyId, selectedUser) Delete a SSH key
Deletes a specific SSH public key from a user's account.
Name | Type | Description | Notes |
---|---|---|---|
ctx | context.Context | context for authentication, logging, cancellation, deadlines, tracing, etc. | |
keyId | string | The SSH key's UUID value. | |
selectedUser | string | This can either be an Atlassian Account ID OR the UUID of the account, surrounded by curly-braces, for example: `{account UUID}`. |
(empty response body)
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
SshAccountKey UsersSelectedUserSshKeysKeyIdGet(ctx, keyId, selectedUser) Get a SSH key
Returns a specific SSH public key belonging to a user.
Name | Type | Description | Notes |
---|---|---|---|
ctx | context.Context | context for authentication, logging, cancellation, deadlines, tracing, etc. | |
keyId | string | The SSH key's UUID value. | |
selectedUser | string | This can either be an Atlassian Account ID OR the UUID of the account, surrounded by curly-braces, for example: `{account UUID}`. |
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
SshAccountKey UsersSelectedUserSshKeysKeyIdPut(ctx, keyId, selectedUser, optional) Update a SSH key
Updates a specific SSH public key on a user's account Note: Only the 'comment' field can be updated using this API. To modify the key or comment values, you must delete and add the key again. Example: $ curl -X PUT -H \"Content-Type: application/json\" -d '{\"label\": \"Work key\"}' https://api.bitbucket.org/2.0/users/{ed08f5e1-605b-4f4a-aee4-6c97628a673e}/ssh-keys/{b15b6026-9c02-4626-b4ad-b905f99f763a}
Name | Type | Description | Notes |
---|---|---|---|
ctx | context.Context | context for authentication, logging, cancellation, deadlines, tracing, etc. | |
keyId | string | The SSH key's UUID value. | |
selectedUser | string | This can either be an Atlassian Account ID OR the UUID of the account, surrounded by curly-braces, for example: `{account UUID}`. | |
optional | *SshApiUsersSelectedUserSshKeysKeyIdPutOpts | optional parameters | nil if no parameters |
Optional parameters are passed through a pointer to a SshApiUsersSelectedUserSshKeysKeyIdPutOpts struct
Name | Type | Description | Notes |
---|
body | optional.Interface of SshAccountKey| The updated SSH key object |
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
SshAccountKey UsersSelectedUserSshKeysPost(ctx, selectedUser, optional) Add a new SSH key
Adds a new SSH public key to the specified user account and returns the resulting key. Example: $ curl -X POST -H \"Content-Type: application/json\" -d '{\"key\": \"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKqP3Cr632C2dNhhgKVcon4ldUSAeKiku2yP9O9/bDtY user@myhost\"}' https://api.bitbucket.org/2.0/users/{ed08f5e1-605b-4f4a-aee4-6c97628a673e}/ssh-keys
Name | Type | Description | Notes |
---|---|---|---|
ctx | context.Context | context for authentication, logging, cancellation, deadlines, tracing, etc. | |
selectedUser | string | This can either be an Atlassian Account ID OR the UUID of the account, surrounded by curly-braces, for example: `{account UUID}`. | |
optional | *SshApiUsersSelectedUserSshKeysPostOpts | optional parameters | nil if no parameters |
Optional parameters are passed through a pointer to a SshApiUsersSelectedUserSshKeysPostOpts struct
Name | Type | Description | Notes |
---|
body | optional.Interface of SshAccountKey| The new SSH key object. Note that the username property has been deprecated due to privacy changes. |
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]