Pomoc MediaWiki API
To jest automatycznie wygenerowana strona dokumentacji MediaWiki API. Dokumentacja i przykłady: https://www.mediawiki.org/wiki/API
action=revisiondelete
(main | revisiondelete)
- Ten moduł wymaga praw odczytu.
- Ten moduł wymaga praw zapisu.
- Ten moduł akceptuje tylko żądania POST.
- Źródło: MediaWiki
- Licencja: GPL-2.0+
Delete and undelete revisions.
Parametry:
- type
Type of revision deletion being performed.
- Ten parametr jest wymagany.
- Jedna z następujących wartość: 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.
- Ten parametr jest wymagany.
- Oddziel wartości za pomocą |. Maksymalna liczba wartości to 50 (500 dla botów).
- hide
What to hide for each revision.
- Wartości (oddziel za pomocą |): content, comment, user
- show
What to unhide for each revision.
- Wartości (oddziel za pomocą |): content, comment, user
- suppress
Whether to suppress data from administrators as well as others.
- Jedna z następujących wartość: yes, no, nochange
- Domyślnie: nochange
- reason
Reason for the deletion or undeletion.
- token
Token "csrf" zdobyty z action=query&meta=tokens
- Ten parametr jest wymagany.
Przykłady:
- 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]