미디어위키 API 도움말
이 페이지는 자동으로 생성된 미디어위키 API 도움말 문서입니다.
설명 문서 및 예시: https://www.mediawiki.org/wiki/API
action=undelete
- 이 모듈은 read 권한을 요구합니다.
- 이 모듈은 write 권한을 요구합니다.
- 이 모듈은 POST 요청만을 허용합니다.
- 출처: MediaWiki
- 라이선스: GPL-2.0+
Restore revisions of a deleted page.
A list of deleted revisions (including timestamps) can be retrieved through list=deletedrevs, and a list of deleted file IDs can be retrieved through list=filearchive.
- title
Title of the page to restore.
- 이 변수는 필수 입력 사항입니다.
- reason
Reason for restoring.
- 기본값: (비어 있음)
- tags
Change tags to apply to the entry in the deletion log.
- 값 (|로 구분):
- timestamps
Timestamps of the revisions to restore. If both timestamps and fileids are empty, all will be restored.
- Type: list of timestamps (allowed formats)
- Separate values with | or alternative. 값들의 최대 수는 50입니다. (봇의 경우 500)
- fileids
IDs of the file revisions to restore. If both timestamps and fileids are empty, all will be restored.
- 유형: 정수 목록
- Separate values with | or alternative. 값들의 최대 수는 50입니다. (봇의 경우 500)
- watchlist
Unconditionally add or remove the page from the current user's watchlist, use preferences or do not change watch.
- 다음 값 중 하나: watch, unwatch, preferences, nochange
- 기본값: preferences
- token
A "csrf" token retrieved from action=query&meta=tokens
- 이 변수는 필수 입력 사항입니다.
- Undelete page Main Page.
- api.php?action=undelete&title=Main%20Page&token=123ABC&reason=Restoring%20main%20page [연습장에서 열기]
- Undelete two revisions of page Main Page.
- api.php?action=undelete&title=Main%20Page&token=123ABC×tamps=2007-07-03T22:00:45Z|2007-07-02T19:48:56Z [연습장에서 열기]