Rate this page:
Api Token APIs
GET /users/{account_id}/manage/api-tokens
Gets the API tokens owned by the specified user.
string
The ID of the user
[a-zA-Z0-9_|:-]{1,128}
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'
Success
Content type | Value |
---|---|
application/json | Array<ApiTokenModel> |
DELETE /users/{account_id}/manage/api-tokens/{tokenId}
Deletes a specifid API token by ID.
string
The ID of the user
[a-zA-Z0-9_|:-]{1,128}
string
The ID of the API token
1 2 3
curl --request DELETE \
--url 'https://api.atlassian.com/users/{account_id}/manage/api-tokens/{tokenId}' \
--header 'Authorization: Bearer <access_token>'
The API token was deleted
Rate this page: