Short answer: You can create plutio task in Plutio by hand from its own interface, but it won’t repeat itself. On TinyCommand, add the Plutio Create Plutio Task action to a workflow, map its 5 inputs from any upstream app, and it runs automatically every time the trigger fires. No code, and a free tier to start.
Every field can be mapped from an upstream trigger, AI step, table row, or hard-coded literal.
| Field | Type | Required | Description |
|---|---|---|---|
Title title | string | Required | Task title |
Project ID projectId | string | Optional | Project to add the task to |
Description description | string | Optional | Task description |
Due Date dueDate | string | Optional | Task due date (YYYY-MM-DD) |
Priority priority | string | Optional | Task priority: low, normal, high, urgent |
{"title": "{{trigger.title}}","projectId": "e.g. abc123","description": "{{trigger.description}}","dueDate": "2025-04-15","priority": "normal"}
{"_id": "task002","title": "Create wireframes","status": "active","dueDate": "2025-04-15","priority": "high","createdAt": "2025-03-15T10:00:00Z","projectId": "abc123"}
Use these fields in downstream nodes for routing, logging, or error handling.
Any of these apps can fire this action as part of a workflow.