edit_question
Modify details of a prediction question on Fatebook. Update fields like title, resolve-by date, and notes to keep forecasts accurate and organized. Requires a valid question ID.
Instructions
Edit a Fatebook question
Input Schema
Name | Required | Description | Default |
---|---|---|---|
apiKey | No | ||
notes | No | ||
questionId | Yes | ||
resolveBy | No | ||
title | No |
Input Schema (JSON Schema)
{
"properties": {
"apiKey": {
"default": "",
"title": "Apikey",
"type": "string"
},
"notes": {
"default": "",
"title": "Notes",
"type": "string"
},
"questionId": {
"title": "Questionid",
"type": "string"
},
"resolveBy": {
"default": "",
"title": "Resolveby",
"type": "string"
},
"title": {
"default": "",
"title": "Title",
"type": "string"
}
},
"required": [
"questionId"
],
"title": "edit_questionArguments",
"type": "object"
}