docs(api): defined and designed /account/id
This commit is contained in:
parent
ed758d42d7
commit
2d7d66bed4
|
@ -12,6 +12,7 @@ __(ND)__ -> Not designed yet.
|
|||
- [X] `/verify`
|
||||
- [X] `/authenticate`
|
||||
- [X] `/delete`
|
||||
- [ ] `/id`
|
||||
- [X] `/tokens`
|
||||
- [X] `/tokens`
|
||||
- [ ] `/follows`
|
||||
|
|
|
@ -0,0 +1,19 @@
|
|||
# `/account/id` - GET
|
||||
Returns identity information about the authorized account.
|
||||
|
||||
## HTTP Headers
|
||||
| Header | Content |
|
||||
|---------------|--------------------|
|
||||
| Authorization | `Bearer {token}` |
|
||||
|
||||
## Responses
|
||||
### 200 - Success
|
||||
__Content - JSON:__
|
||||
|
||||
| Field | Description |
|
||||
|----------|---------------------------|
|
||||
| id | The accounts unique id. |
|
||||
| username | The projects unique name. |
|
||||
|
||||
### 401 - Error: Unauthorized
|
||||
The provided access token doesn't allow you to perform this operation.
|
|
@ -22,7 +22,7 @@ __Content - JSON:__
|
|||
### 400 - Error: Bad Request
|
||||
The request was malformed.
|
||||
### 401 - Error: Unauthorized
|
||||
The provided access token doesn't allow you to perfrom this operation.
|
||||
The provided access token doesn't allow you to perform this operation.
|
||||
### 403 - Error: Forbidden
|
||||
Blocked for security reasons.
|
||||
### 409 - Error: Conflict
|
||||
|
|
Loading…
Reference in New Issue