Api Token APIs
Gets the API tokens owned by the specified user.
AccountId
RequiredSuccess
array<ApiTokenModel>
1
2
3
4
curl --request GET \
--url 'https://api.atlassian.com/users/{account_id}/manage/api-tokens' \
--header 'Authorization: Bearer <access_token>' \
--header 'Accept: application/json'
1
2
3
4
5
6
7
8
[
{
"label": "My Addon",
"lastAccess": "2015-05-12T20:20:50.521Z",
"createdAt": "2015-04-12T23:20:50.522Z",
"id": "<string>"
}
]
Deletes a specifid API token by ID.
AccountId
Requiredstring
RequiredThe API token was deleted
1
2
3
curl --request DELETE \
--url 'https://api.atlassian.com/users/{account_id}/manage/api-tokens/{tokenId}' \
--header 'Authorization: Bearer <access_token>'
Rate this page: