Skip to content

API Documentation

Version: Arctyk ITSM v0.6.0+
Last Updated: January 2026

Comment API (v0.6.0+)

The Comments API provides endpoints for managing ticket comments.

Endpoints

GET /tickets/<pk>/comment/ - List all comments for a ticket
POST /tickets/<pk>/comment/ - Create a new comment
PATCH /tickets/<pk>/comment/<id>/ - Update a comment
DELETE /tickets/<pk>/comment/<id>/ - Delete a comment

Example Request

POST /tickets/123/comment/
{
  "content": "This is a comment",
  "comment_type": "public"
}

Response

{
  "id": 1,
  "ticket": 123,
  "author": "user@example.com",
  "content": "This is a comment",
  "comment_type": "public",
  "created_at": "2026-01-03T10:00:00Z"
}

Additional Documentation

Full API documentation coming soon.