43 lines
1.4 KiB
Markdown
43 lines
1.4 KiB
Markdown
# `/account/tokens` - GET
|
|
Lists all active auth tokens for the account.
|
|
|
|
## HTTP Headers
|
|
| Header | Content |
|
|
|---------------|--------------------|
|
|
| Authorization | `Bearer {token}` |
|
|
|
|
## Responses
|
|
### 200 - Success
|
|
__Content - JSON:__
|
|
| Field | Description |
|
|
|--------|-------------------------------------------------------------------------------------------------|
|
|
| tokens | A list of (token, expiration date) pairs. The expiration date is given as a UTC UNIX timestamp. |
|
|
### 401 - Error: Unauthorized
|
|
The provided auth token doesn't allow you to perform this operation.
|
|
### 403 - Error: Forbidden
|
|
Blocked for security reasons.
|
|
|
|
|
|
# `/account/tokens` - DELETE
|
|
Deletes a token of the authenticated account.
|
|
|
|
## HTTP Headers
|
|
| Header | Content |
|
|
|---------------|--------------------|
|
|
| Authorization | `Bearer {token}` |
|
|
| Content-Type | `application/json` |
|
|
|
|
## Content - JSON
|
|
| Field | Description |
|
|
|-------|-----------------------------------|
|
|
| token | The token that should be deleted. |
|
|
|
|
## Responses
|
|
### 200 - Success
|
|
The token was deleted.
|
|
### 401 - Error: Unauthorized
|
|
The provided auth token doesn't allow you to perform this operation.
|
|
### 403 - Error: Forbidden
|
|
Blocked for security reasons.
|
|
### 404 - Error: Not Found
|
|
The token that should be deleted wasn't found. |