すべてのツール

todoist_create_task

Todoist · macOS · Windows

効果: 書き込み. 状態: 条件付き提供.

「条件付き提供」は、バージョン、プラットフォーム、権限、アカウント、設定に依存する可能性を示し、すべての環境で有効という意味ではありません。

macOS

目的

Todoist タスクを作成します。任意でプロジェクト、自然言語の期限(due_string。例: 'tomorrow 5pm'、'every monday')、優先度(1=通常 … 4=緊急)を指定できます。

必須入力

入力名はツールが要求する正確な形式のままです。英語の正規技術定義は下の展開可能なスキーマにあります。

権限と確認

スキーマには明示的な確認パラメータがありません。これは無許可の操作を認めるものではありません。効果を確認し、承認を得てください。

英語の正規技術スキーマmacOS
{
  "properties": {
    "content": {
      "description": "The task text",
      "type": "string"
    },
    "due_string": {
      "description": "Natural-language due date, e.g. 'tomorrow 5pm', 'next monday'",
      "type": "string"
    },
    "priority": {
      "description": "1 (normal) to 4 (urgent). Todoist UI p1 = 4.",
      "type": "integer"
    },
    "project_id": {
      "description": "Project to add it to (default: Inbox)",
      "type": "string"
    }
  },
  "required": [
    "content"
  ],
  "type": "object"
}

ドキュメント例

todoist_create_task のドキュメント例です。この例は実行しないでください。表示される引数は架空のデータセットに属します。実際に呼び出す前に実在する識別子を確認し、承認を得てください。

{
  "content": "Meeting agenda: review the launch checklist."
}

Windows

目的

Todoist タスクを作成します。任意でプロジェクト、自然言語の期限(due_string。例: 'tomorrow 5pm'、'every monday')、優先度(1=通常 … 4=緊急)を指定できます。

必須入力

入力名はツールが要求する正確な形式のままです。英語の正規技術定義は下の展開可能なスキーマにあります。

権限と確認

スキーマには明示的な確認パラメータがありません。これは無許可の操作を認めるものではありません。効果を確認し、承認を得てください。

英語の正規技術スキーマWindows
{
  "properties": {
    "content": {
      "description": "The task text",
      "type": "string"
    },
    "due_string": {
      "description": "Natural-language due date, e.g. 'tomorrow 5pm', 'next monday'",
      "type": "string"
    },
    "priority": {
      "description": "1 (normal) to 4 (urgent). Todoist UI p1 = 4.",
      "type": "integer"
    },
    "project_id": {
      "description": "Project to add it to (default: Inbox)",
      "type": "string"
    }
  },
  "required": [
    "content"
  ],
  "type": "object"
}

ドキュメント例

todoist_create_task のドキュメント例です。この例は実行しないでください。表示される引数は架空のデータセットに属します。実際に呼び出す前に実在する識別子を確認し、承認を得てください。

{
  "content": "Meeting agenda: review the launch checklist."
}