Alle hulpmiddelen

create_omnifocus_task

OmniFocus · macOS

Effect: schrijven. Status: voorwaardelijk beschikbaar.

‘Voorwaardelijke beschikbaarheid’ betekent dat het hulpmiddel kan afhangen van versie, platform, machtigingen, account of configuratie. Het is niet in elke installatie actief.

macOS

Doel

Maakt een nieuwe taak in OmniFocus. Vereist confirm=true.

Vereiste invoer

De namen blijven exact zoals het hulpmiddel ze vereist. De canonieke technische definities in het Engels staan in het uitklapbare schema hieronder.

Machtigingen en bevestiging

Het schema bevat een expliciete bevestigingsparameter. Controleer het voorbeeld en autoriseer de echte bewerking volgens het platformcontract.

Canoniek technisch schema in het EngelsmacOS
{
  "properties": {
    "confirm": {
      "description": "Must be true to create; called without it, returns a preview.",
      "type": "boolean"
    },
    "defer_date": {
      "description": "Defer/start date, ISO 8601 — the task stays hidden until then.",
      "type": "string"
    },
    "due_date": {
      "description": "Due date, ISO 8601 (YYYY-MM-DD or full timestamp).",
      "type": "string"
    },
    "flagged": {
      "default": "false",
      "description": "Create the task flagged.",
      "type": "boolean"
    },
    "name": {
      "description": "The task title.",
      "type": "string"
    },
    "note": {
      "description": "Longer note/body for the task.",
      "type": "string"
    },
    "project": {
      "description": "Project to file the task under (name). Omit for the inbox.",
      "type": "string"
    }
  },
  "required": [
    "name"
  ],
  "type": "object"
}

Documentatievoorbeeld

Documentatievoorbeeld voor create_omnifocus_task. Voer dit voorbeeld niet uit. De getoonde argumenten verwijzen naar fictieve gegevens; zoek vóór een echte aanroep de werkelijke identificatoren op en vraag toestemming.

{
  "confirm": false,
  "name": "Planning meeting"
}