Minctrl Docs

Add a ticket comment

POST
/kanban/tickets/{ticket_id}/comments

Post a comment on a ticket.

Requires a valid bearer token and an active company; the ticket's project must belong to the caller's company (403 otherwise).

Authorization

HTTPBearer
AuthorizationBearer <token>

In: header

Path Parameters

ticket_id*Ticket Id

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Payload to post a comment on a kanban ticket.

Response Body

application/json

application/json

curl -X POST "https://example.com/kanban/tickets/string/comments" \  -H "Content-Type: application/json" \  -d '{    "author": "user",    "author_icon": "person",    "body": "Looks good — merging after CI passes."  }'
null
Empty
Empty
{  "detail": [    {      "loc": [        "string"      ],      "msg": "string",      "type": "string",      "input": null,      "ctx": {}    }  ]}