The users resource allows you to access public information associated with a user account. Most resources in the users endpoint have been deprecated in favor of workspaces.
Returns the currently logged in user.
account
This request has no parameters.
The current user.
allOf [object, Account]
Base type for most resource objects. It defines the common type
element that identifies an object's type. It also identifies the element as Swagger's discriminator
.
An account object.
1
2
3
4
curl --request GET \
--url 'https://api.bitbucket.org/2.0/user' \
--header 'Authorization: Bearer <access_token>' \
--header 'Accept: application/json'
1
2
3
4
5
6
7
8
9
{
"type": "<string>",
"links": {
"avatar": {}
},
"created_on": "<string>",
"display_name": "<string>",
"uuid": "<string>"
}
Returns all the authenticated user's email addresses. Both confirmed and unconfirmed.
email
This request has no parameters.
Unexpected error.
Base type for most resource objects. It defines the common type
element that identifies an object's type. It also identifies the element as Swagger's discriminator
.
1
2
3
curl --request GET \
--url 'https://api.bitbucket.org/2.0/user/emails' \
--header 'Authorization: Bearer <access_token>'
1
2
3
4
5
6
7
8
{
"type": "<string>",
"error": {
"message": "<string>",
"detail": "<string>",
"data": {}
}
}
Returns details about a specific one of the authenticated user's email addresses. Details describe whether the address has been confirmed by the user and whether it is the user's primary address or not.
email
string
RequiredUnexpected error.
Base type for most resource objects. It defines the common type
element that identifies an object's type. It also identifies the element as Swagger's discriminator
.
1
2
3
curl --request GET \
--url 'https://api.bitbucket.org/2.0/user/emails/{email}' \
--header 'Authorization: Bearer <access_token>'
1
2
3
4
5
6
7
8
{
"type": "<string>",
"error": {
"message": "<string>",
"detail": "<string>",
"data": {}
}
}
Gets the public information associated with a user account.
If the user's profile is private, location
, website
and
created_on
elements are omitted.
Note that the user object returned by this operation is changing significantly, due to privacy changes. See the announcement for details.
string
RequiredThe user object
allOf [object, Account]
Base type for most resource objects. It defines the common type
element that identifies an object's type. It also identifies the element as Swagger's discriminator
.
An account object.
1
2
3
4
curl --request GET \
--url 'https://api.bitbucket.org/2.0/users/{selected_user}' \
--header 'Authorization: Bearer <access_token>' \
--header 'Accept: application/json'
1
2
3
4
5
6
7
8
9
{
"type": "<string>",
"links": {
"avatar": {}
},
"created_on": "<string>",
"display_name": "<string>",
"uuid": "<string>"
}
Rate this page: