MediaWiki API súgó
Ez egy automatikusan generált MediaWiki API-dokumentációs lap.
Dokumentáció és példák: https://www.mediawiki.org/wiki/API
action=revisiondelete
(main | revisiondelete)
- Ez a modul olvasási jogot igényel.
- Ez a modul írási jogot igényel.
- Ez a modul csak POST kéréseket fogad el.
- Forrás: MediaWiki
- Licenc: GPL-2.0+
Delete and undelete revisions.
Paraméterek:
- type
Type of revision deletion being performed.
- Ez a paraméter kötelező.
- A következő értékek egyike: revision, archive, oldimage, filearchive, logging
- target
Page title for the revision deletion, if required for the type.
- ids
Identifiers for the revisions to be deleted.
- Ez a paraméter kötelező.
- Separate values with | or alternative. Maximum number of values is 50 (500 for bots).
- hide
What to hide for each revision.
- Értékek (elválasztó: |): content, comment, user
- show
What to unhide for each revision.
- Értékek (elválasztó: |): content, comment, user
- suppress
Whether to suppress data from administrators as well as others.
- A következő értékek egyike: yes, no, nochange
- Default: nochange
- reason
Reason for the deletion or undeletion.
- token
A "csrf" token retrieved from action=query&meta=tokens
- Ez a paraméter kötelező.
Examples:
- Hide content for revision 12345 on the page Main Page.
- api.php?action=revisiondelete&target=Main%20Page&type=revision&ids=12345&hide=content&token=123ABC [open in sandbox]
- Hide all data on log entry 67890 with the reason BLP violation.
- api.php?action=revisiondelete&type=logging&ids=67890&hide=content|comment|user&reason=BLP%20violation&token=123ABC [open in sandbox]