TechArticle

API de notas

Contrato preparado de API publica para crear notas de proyecto desde sistemas externos.

Create notes

Notes are useful for incoming website messages, meeting summaries, research snippets and project context that should be stored without turning it into a task immediately.

This resource contract is prepared for the upcoming public notes endpoint. The live public API currently creates tasks.
POST /public-api/v1/notes/ Prepared contract for creating one note.
{
  "description": "Client sent updated hosting credentials.",
  "date": "2026-06-16 12:20:00",
  "client_id": 15,
  "project_id": 8,
  "task_id": 123,
  "category_id": 4
}

Fields

description required Main note text.
date optional Date/time of the note.
client_id optional Existing client owned by the API key user.
project_id optional Existing project owned by the API key user.
task_id optional Existing task owned by the API key user.
category_id optional Existing category owned by the API key user.