MediaWiki API help
This is an auto-generated MediaWiki API documentation page.
Documentation and examples: https://www.mediawiki.org/wiki/API
list=blocks (bk)
- Denne modulen krever lesetilgang.
- Kilde: MediaWiki
- Lisens: GPL-2.0-or-later
List all blocked users and IP addresses.
- bkstart
The timestamp to start enumerating from.
- Type: tidsstempel (tillatte formater)
- bkend
The timestamp to stop enumerating at.
- Type: tidsstempel (tillatte formater)
- 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.
- Én av følgende verdier: newer, older
- Standard: older
- bkids
List of block IDs to list (optional).
- Type: liste over heltall
- Separer verdier med | eller alternativ. Maksimalt antall verdier er 50 (500 for botter)
- bkusers
List of users to search for (optional).
- Type: liste over brukernavn
- Separer verdier med | eller alternativ. Maksimalt antall verdier er 50 (500 for botter)
- 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.
- Ikke mer enn 500 (5 000 for botter) er tillatt.
- Type: heltall eller max
- Standard: 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.).
- Verdier (separer med | eller alternativ): id, user, userid, by, byid, timestamp, expiry, reason, range, flags
- Standard: 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.
- Verdier (separer med | eller alternativ): account, !account, temp, !temp, ip, !ip, range, !range
- bkcontinue
Når flere resultater er tilgjengelige, bruk denne for å fortsette.
- List blocks.
- api.php?action=query&list=blocks [åpne i sandkasse]
- List blocks of users Alice and Bob.
- api.php?action=query&list=blocks&bkusers=Alice|Bob [åpne i sandkasse]