mirror of
https://github.com/Fijxu/BooyahDocs.git
synced 2025-01-25 02:33:12 -03:00
6905fea26d
The content of the Users API docs is still to be completed. APIs that are from the same url were merged in the same file. ./docs/users.md not yet completed
28 lines
515 B
Markdown
28 lines
515 B
Markdown
# Game Followings - Private
|
|
|
|
Request Method: GET
|
|
|
|
* */users/`userID`/game-followings* = Get the games followed by you
|
|
* Response Example:
|
|
|
|
```js
|
|
{"count":1337} // Follower Count
|
|
```
|
|
|
|
Request Method: POST
|
|
|
|
* */users/`userID`/game-followings* =
|
|
* Response Example:
|
|
|
|
```js
|
|
{"count":1337} // Follower Count
|
|
```
|
|
|
|
Request Method: DELETE
|
|
|
|
* */users/`userID`/game-followings* = Delete a game followed by you
|
|
* Response Example:
|
|
|
|
```js
|
|
{"count":1337} // Follower Count
|
|
```
|