Skip to content

getBlockedUsers

Sahri Riza Umami edited this page Jun 25, 2018 · 3 revisions

Returns users that were blocked by the current user.

getBlockedUsers(offset, limit, callback, data)
Field Type Description
offset int32 Number of users to skip in the result; must be non-negative.
limit int32 Maximum number of users to return; up to 100.

Example

  • Get 10 users blocked by the current user.

    getBlockedUsers(0, 10)

    Response:

    {
      ["@type"] = "users",
      total_count = 9,
      user_ids = {
        111111111,
        123456123,
        234543221,
        978379478,
        666666666,
        999978881,
        112233445,
        555555555,
        109839758
      }
    }

Frequently Asked Questions
The Functions

Clone this wiki locally