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=rollback

(main | rollback)
  • This module requires read rights.
  • This module requires write rights.
  • This module only accepts POST requests.
  • Fonte: MediaWiki
  • Licença: GPL-2.0+

Undo the last edit to the page.

If the last user who edited the page made multiple edits in a row, they will all be rolled back.

Parâmetros:
title

Título da página para reverter. Não pode ser usado em conjunto com pageid.

pageid

ID da página para reverter. Não pode ser usado em conjunto com title.

Type: integer
tags

Tags to apply to the rollback.

Valores (separar com |):
user

Name of the user whose edits are to be rolled back.

Este parâmetro é obrigatório.
Tipo: nome de utilizador
summary

Custom edit summary. If empty, default summary will be used.

Padrão: (vazio)
markbot

Mark the reverted edits and the revert as bot edits.

Tipo: boolean (detalhes)
watchlist

Unconditionally add or remove the page from the current user's watchlist, use preferences or do not change watch.

Um dos seguintes valores: watch, unwatch, preferences, nochange
Padrão: preferences
token

A "rollback" token retrieved from action=query&meta=tokens

For compatibility, the token used in the web UI is also accepted.

Este parâmetro é obrigatório.
Exemplos:
Roll back the last edits to page Main Page by user Example.
api.php?action=rollback&title=Main%20Page&user=Example&token=123ABC [abrir na página de testes]
Roll back the last edits to page Main Page by IP user 192.0.2.5 with summary Reverting vandalism, and mark those edits and the revert as bot edits.
api.php?action=rollback&title=Main%20Page&user=192.0.2.5&token=123ABC&summary=Reverting%20vandalism&markbot=1 [abrir na página de testes]