Nápověda k MediaWiki API
Toto je automaticky generovaná dokumentační stránka k MediaWiki API.
Dokumentace a příklady: https://www.mediawiki.org/wiki/API
list=blocks (bk)
- Tento modul vyžaduje oprávnění ke čtení.
 - Zdroj: MediaWiki
 - Licence: GPL-2.0-or-later
 
List all blocked users and IP addresses.
- bkstart
 The timestamp to start enumerating from.
- Type: timestamp (allowed formats)
 - bkend
 The timestamp to stop enumerating at.
- Type: timestamp (allowed formats)
 - bkdir
 In which direction to enumerate:
- newer
 - List oldest first. Note: bkstart has to be before bkend.
 - older
 - List newest first (default). Note: bkstart has to be later than bkend.
 
- Jedna z následujících hodnot: newer, older
 - Implicitní hodnota: older
 - bkids
 List of block IDs to list (optional).
- Typ: seznam celých čísel
 - Hodnoty oddělujte pomocí | nebo alternativou. Maximální počet hodnot je 50 (pro boty 500).
 - bkusers
 List of users to search for (optional).
- Type: list of user names
 - Hodnoty oddělujte pomocí | nebo alternativou. Maximální počet hodnot je 50 (pro boty 500).
 - bkip
 Get all blocks applying to this IP address or CIDR range, including range blocks. Cannot be used together with bkusers. CIDR ranges broader than IPv4/16 or IPv6/19 are not accepted.
- bklimit
 The maximum number of blocks to list.
- Není dovoleno více než 500 (5 000 pro boty).
 - Type: integer or max
 - Implicitní hodnota: 10
 - bkprop
 Which properties to get:
- id
 - Adds the ID of the block.
 - user
 - Adds the username of the blocked user.
 - userid
 - Adds the user ID of the blocked user.
 - by
 - Adds the username of the blocking user.
 - byid
 - Adds the user ID of the blocking user.
 - timestamp
 - Adds the timestamp of when the block was given.
 - expiry
 - Adds the timestamp of when the block expires.
 - reason
 - Adds the reason given for the block.
 - range
 - Adds the range of IP addresses affected by the block.
 - flags
 - Tags the ban with (autoblock, anononly, etc.).
 
- Hodnoty (oddělené | nebo alternativou.): id, user, userid, by, byid, timestamp, expiry, reason, range, flags
 - Implicitní hodnota: id|user|by|timestamp|expiry|reason|flags
 - bkshow
 Show only items that meet these criteria. For example, to see only indefinite blocks on IP addresses, set bkshow=ip|!temp.
- Hodnoty (oddělené | nebo alternativou.): account, !account, temp, !temp, ip, !ip, range, !range
 - bkcontinue
 When more results are available, use this to continue.
- Vypsat zablokování.
 - api.php?action=query&list=blocks [otevřít v pískovišti]
 - Seznam bloků uživatelů Alice a Bob.
 - api.php?action=query&list=blocks&bkusers=Alice|Bob [otevřít v pískovišti]