Page History
ページの変更履歴(version 降順)を返す(Section 4)。viewer 以上。
GET
/pages/{page_id}/historyPath parameters
page_idstringrequiredHeader parameters
authorizationstring | anyX-Api-Keystring | anyResponses
200Successful Response
any422Validation Error
detailValidationError[]Show propertiesHide properties
Array of
ValidationErrorlocstring | integer[]requiredShow propertiesHide properties
Array of
string | integerAny of:
string
stringinteger
integermsgstringrequiredtypestringrequiredRequest
curl -X GET "/pages/string/history"const response = await fetch("/pages/string/history", {
method: "GET"
});import requests
response = requests.get(
"/pages/string/history",
)Response
"string"{
"detail": [
{
"loc": [
"string"
],
"msg": "string",
"type": "string"
}
]
}