---
title: "Adicionar anotação"
method: POST
path: "/v1/panel/card/{cardId}/note"
tags: ["Cards"]
---

# Adicionar anotação

`POST /v1/panel/card/{cardId}/note`

## Path parameters

- `cardId` string, uuid, required

## Request body

- PublicReqCreatePanelNoteDTO
  - `text` string, nullable — Texto da anotação.
  - `fileUrls` string[], nullable — URL pública de algum arquivo que deseja-se anexar à anotação. O tamanho máximo permitido para um arquivo é de 25MB.

## Response `200`

Success

- PublicPanelCardNoteDTO
  - `id` string, uuid
  - `createdAt` string, date-time
  - `updatedAt` string, date-time
  - `companyId` string, uuid
  - `panelId` string, uuid
  - `cardId` string, uuid
  - `userId` string, uuid
  - `text` string, nullable
  - `files` PublicFileDTO[], nullable
    - `id` string, uuid
    - `companyId` string, uuid, nullable
    - `userId` string, uuid, nullable
    - `name` string, nullable
    - `extension` string, nullable
    - `mimeType` string, nullable
    - `type` 'UNDEFINED' | 'PDF' | 'EXCEL' | 'WORD' | 'IMAGE' | 'AUDIO' | 'VIDEO'
    - `publicUrl` string, nullable
    - `publicUrlDownload` string, nullable
    - `size` integer
    - `isThumbnail` boolean
    - `thumbnail` PublicFileThumbnailDTO
      - `id` string, uuid
      - `publicUrl` string, nullable
  - `isFromPublicApi` boolean

## Other responses

- `500` — Server Error

---

[API](https://skmtc.dev/wts/apis/core.md) · [All operations](https://skmtc.dev/wts/apis/core/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/wts/core/revisions/1efd0a6ba643/schema)
