Ajuda API da MediaWiki
Esta é uma página de documentação API do MediaWiki gerada automaticamente.
Documentação e exemplos: https://www.mediawiki.org/wiki/API
action=revisiondelete
(main | revisiondelete)
- This module requires read rights.
- This module requires write rights.
- This module only accepts POST requests.
- Fonte: MediaWiki
- Licença: GPL-2.0+
Delete and undelete revisions.
Parâmetros:
- type
Type of revision deletion being performed.
- Este parâmetro é obrigatório.
- Um dos seguintes valores: 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.
- Este parâmetro é obrigatório.
- Separe os valores com |. Maximum number of values is 50 (500 for bots).
- hide
What to hide for each revision.
- Valores (separar com |): content, comment, user
- show
What to unhide for each revision.
- Valores (separar com |): content, comment, user
- suppress
Whether to suppress data from administrators as well as others.
- Um dos seguintes valores: yes, no, nochange
- Padrão: nochange
- reason
Reason for the deletion or undeletion.
- token
A "csrf" token retrieved from action=query&meta=tokens
- Este parâmetro é obrigatório.
Exemplos:
- 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 [abrir na página de testes]
- 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 [abrir na página de testes]