mirror of
https://github.com/Fijxu/BooyahDocs.git
synced 2025-01-27 11:43:13 -03:00
29 lines
515 B
Markdown
29 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
|
||
|
```
|