paymo_create_task
Create a Paymo task with name, project or tasklist, plus optional description, due date, priority, and assignees.
Instructions
Create a new Paymo task. Requires a name and either a project_id or a tasklist_id. Optional: description, due_date (YYYY-MM-DD), priority (100/75/50/25), users (list of user ids).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Task title. | |
| users | No | Optional assignees (Paymo user ids). | |
| due_date | No | Optional due date in YYYY-MM-DD format. | |
| priority | No | Optional Priority: 100 critical, 75 high, 50 normal, 25 low. Paymo only uses these four. | |
| project_id | No | Required if tasklist_id is not given. | |
| description | No | Optional task description. Paymo renders HTML here (p, b, i, u, s, ul, ol, li, h2, blockquote, a, br, code, pre, span) and strips anything else. Markdown is not rendered: use tags, not ** or backticks. | |
| tasklist_id | No | Paymo tasklist (column) id. Required if project_id is not given. |