1ClickDOCS
Developer docs

API reference · Tickets

REST endpoints for managing tickets. Base URL https://api.1clickbuilder.com/v1

Endpoints

GET/ticketsList tickets
POST/ticketsCreate a ticket
GET/tickets/:idRetrieve a ticket
PATCH/tickets/:idUpdate a ticket
DEL/tickets/:idDelete a ticket
POST/v1/tickets

Creates a ticket on the specified board. Returns the created ticket object.

Body parameters
titlerequired
string
Short summary of the ticket. Max 140 characters.
board_id
string
Target board. Defaults to the project's primary board.
priority
enum
low | medium | high | critical. Defaults to medium.
labels
string[]
Tag array. Labels are created on first use.
assignee_id
string
User ID to assign. Must be a member of the workspace.
description
string
Markdown body. Rendered in the ticket detail view.

Example response

{
  "id": "tkt_9f3a21",
  "title": "Checkout button misaligned on mobile",
  "status": "backlog",
  "priority": "high",
  "labels": ["bug", "ui"],
  "assignee_id": null,
  "created_at": "2025-06-23T10:14:00Z",
  "updated_at": "2025-06-23T10:14:00Z"
}