mirror of
https://github.com/Fijxu/BooyahDocs.git
synced 2025-01-26 03:03: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
17 lines
496 B
Markdown
Executable file
17 lines
496 B
Markdown
Executable file
# Blocks - Private
|
|
|
|
Request Method: GET
|
|
|
|
* */users/`userID`/blocks* = Get accounts accounts you have blocked
|
|
* Response Example:
|
|
|
|
```js
|
|
{
|
|
"block_list": [{
|
|
"blocked_uid": "12345678", //userID of the blocked user
|
|
"nickname": "Thisismynickname", // Nickanem of the blocked user
|
|
"source": 0 // From booyah files -> // 0: MAMBETTV, 1: YOUTUBE, 3:FACEBOOK
|
|
// MAMBETTV is the old name of booyah
|
|
}]
|
|
}
|
|
```
|