Skip to content

Latest commit

 

History

History
50 lines (40 loc) · 964 Bytes

listFollowing.md

File metadata and controls

50 lines (40 loc) · 964 Bytes

#User.listFollowing Get followees of this user

Supported request methods

  • GET

##Arguments ###Optional

  • limit

    int return limit

  • order

    str sort order (by name). Possible values: ['desc', 'asc']. Default: 'desc'

  • since_id

    int return entities in interval [since_id, max_id]

###Requried

  • user

    str user email

Requesting http://some.host.ru/db/api/user/listFollowing/?limit=3&user=example3%40mail.ru&since_id=1&order=desc:

{
    "code": 0,
    "response": [
        {
            "about": "hello im user1",
            "email": "[email protected]",
            "followers": [
                "[email protected]"
            ],
            "following": [
                "[email protected]"
            ],
            "id": 1,
            "isAnonymous": false,
            "name": "John",
            "subscriptions": [
                4
            ],
            "username": "user1"
        }
    ]
}