Get a list of issued API tokens
GET/users/me/tokens
Will return a list of API tokens that are registered for this user (only token metadata is returned, not the actual tokens)
Request
Responses
- 200
OK
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
description stringrequired
A simple description that was supplied when creating the token
token_id integerrequired
The token ID to use when calling other endpoints
[
{
"description": "token used on my laptop",
"token_id": 0
}
]
Loading...