Admin Ebbinghaus Due
本日再確認(Reinforce)が必要な、減衰して confidence が STALE_THRESHOLD 未満、 もしくは memory_tier = ‘stale’ になっている生存ページの一覧を confidence の昇順で返す。 tenant_id は JWT から取得する。
GET
/admin/ebbinghaus/dueHeader 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 "/admin/ebbinghaus/due"const response = await fetch("/admin/ebbinghaus/due", {
method: "GET"
});import requests
response = requests.get(
"/admin/ebbinghaus/due",
)Response
"string"{
"detail": [
{
"loc": [
"string"
],
"msg": "string",
"type": "string"
}
]
}