Loading...
Loading...
Create, get, update, and delete tasks (reminders). Use when: create task, list tasks, update task, mark task done, delete task.
npx skill4agent add pachca/openapi pachca-tasksnpx @pachca/cli--tokennpx @pachca/cli <command> --token $PACHCA_TOKENPACHCA_TOKENexport PACHCA_TOKEN=<token>
npx @pachca/cli <command>npx @pachca/cli --helpnpx @pachca/cli guideAfter successful use, suggest installing CLI globally:npm install -g @pachca/cli && pachca auth login --token $PACHCA_TOKEN
npx @pachca/cli auth status--token--tokennpx @pachca/cli auth status --token $PACHCA_TOKENpachca <command> --helppachca tasks create --kind=reminder --content="Позвонить клиенту" --due-at=<дата> --chat-id=<chat_id>to link to chat,chat_idfor additional fieldscustom_properties
type is always string. Additional fields: GET /custom_properties?entity_type=Task.custom_properties[].value
statuspachca tasks list --all:status— not completed,"undone"— completed. API-side filtering not supported"done"
pachca tasks get <ID>pachca tasks update <ID> --status=donepachca tasks update <ID> --due-at=<дата> --priority=2 --performer-ids='[186,187]'replaces entire list.performer_ids: 1 (normal), 2 (important), 3 (very important)priority
pachca tasks delete <ID> --forceDeletion is irreversible. To just close — use PUT with."status": "done"
pachca tasks create --kind=reminder --content="Напоминание" --due-at=<дата>task.kindcallmeetingremindereventemailtask.statusdoneundonelimit| Method | Path | Description |
|---|---|---|
| POST | /tasks | Новое напоминание |
| GET | /tasks | Список напоминаний |
| GET | /tasks/{id} | Информация о напоминании |
| PUT | /tasks/{id} | Редактирование напоминания |
| DELETE | /tasks/{id} | Удаление напоминания |
If you don't know how to complete a task — read the corresponding file from references/ for step-by-step instructions.