18 lines
581 B
Markdown
18 lines
581 B
Markdown
|
# `/account/follows` - GET
|
||
|
Lists all acccounts that the authenticated account follows.
|
||
|
|
||
|
## HTTP Headers
|
||
|
| Header | Content |
|
||
|
|---------------|--------------------|
|
||
|
| Authorization | `Bearer {token}` |
|
||
|
|
||
|
## Responses
|
||
|
### 200 - Success
|
||
|
__Content - JSON:__
|
||
|
| Field | Description |
|
||
|
|----------|-------------------------------------|
|
||
|
| accounts | A list of (username, userid) pairs. |
|
||
|
### 401 - Error: Unauthorized
|
||
|
The provided auth token doesn't allow you to perform this operation.
|
||
|
### 403 - Error: Forbidden
|
||
|
Blocked for security reasons.
|