API:Patrol
Jump to navigation
Jump to search
| This page is part of the MediaWiki Action API documentation. |
| Please help improve this technical documentation! Take our MediaWiki Action API Technical Documentation User Feedback Survey before 6 January – Note: The survey uses Google Forms. See Privacy Statement – Thanks! |
| MediaWiki version: | ≥ 1.14 |
Token[edit]
To patrol a request, a patrol token is required. Since MediaWiki 1.17, the patrol token has no longer been the same as the edit token. The patrol token is the same for all pages, but changes at every login.
Patrol tokens can be obtained via action=query&meta=tokens with type=patrol:
| Result |
|---|
{
"batchcomplete": "",
"query": {
"tokens": {
"patroltoken": "c01933f8aa819a7889e0aa98bfd7533f5a1a5a81+\\"
}
}
}
|
Patrolling changes[edit]
You can patrol changes using action=patrol. Note that this module only accepts POST requests.
Parameters[edit]
rcid: Recentchanges ID to patrol.revid: Revision ID to patrol. 1.22+tags: Change tags to apply to the entry in the patrol log. 1.27+token: The token obtained in the previous request. Take care to encode the+as%2B
Example[edit]
Patrolling rcid 242005359
| Result |
|---|
<?xml version="1.0" encoding="utf-8"?>
<api>
<patrol rcid="242005359" />
</api>
|
Possible errors[edit]
In addition to the usual errors:
| Code | Info |
|---|---|
| patroldisabled | Patrolling is disabled on this wiki |
| noautopatrol | You are not allowed to mark your own changes as patrolled. Only users with the
autopatrol right can do this |
| notpatrollable | The revision rid can't be patrolled as it's too old. |
| nosuchrcid | There is no recent change with ID rcid. |
| nosuchrevid | There is no revision with ID revid. |
| The following documentation is the output of Special:ApiHelp/patrol, automatically generated by the pre-release version of MediaWiki that is running on this site (MediaWiki.org). |
action=patrol
(main | patrol)
- This module requires read rights.
- This module requires write rights.
- This module only accepts POST requests.
- Source: MediaWiki
- License: GPL-2.0-or-later
Patrol a page or revision.
Parameters:
- rcid
Recentchanges ID to patrol.
- Type: integer
- revid
Revision ID to patrol.
- Type: integer
- tags
Change tags to apply to the entry in the patrol log.
- Values (separate with | or alternative):
- token
A "patrol" token retrieved from action=query&meta=tokens
- This parameter is required.
Examples:
- Patrol a recent change.
- api.php?action=patrol&token=123ABC&rcid=230672766 [open in sandbox]
- Patrol a revision.
- api.php?action=patrol&token=123ABC&revid=230672766 [open in sandbox]