Issues

Issue tracking and reporting

Get Issues

get
/issues

Retrieves issues with optional filtering

Authorizations
apikeystringRequired

API key for authentication. Format - apikey YOUR_API_KEY

Query parameters
pageinteger · min: 1Optional

Page number (1-indexed)

Default: 1
limitinteger · min: 1 · max: 100Optional

Items per page (max 100)

Default: 10
projectstringOptional

Filter by project ID

statusstring · enumOptional

Filter by issue status

Possible values:
assigneestringOptional

Filter by assignee email

createdBystringOptional

Filter by creator email

Responses
201

Issues retrieved successfully

application/json
get
/issues
201

Issues retrieved successfully

Create Issue

post
/issues

Creates a new issue for a task

Authorizations
apikeystringRequired

API key for authentication. Format - apikey YOUR_API_KEY

Body
labelTaskstringRequired

Task ID to create issue for

titlestringOptional
contentstringOptional
positionstringOptional
pointsobject[]Optional
errorTypestringOptional
errorCodestringOptional
Responses
201

Issue created successfully

application/json
post
/issues

Update Issue

post
/issues/{issueId}

Updates an existing issue. All fields are optional - only provided fields will be updated.

Updatable fields:

  • content: Update the issue description/content

  • status: Change status to "Open" or "Resolved"

  • pctDetails: Update PCT-specific details (for PCT issues)

  • errorCodes: Update error codes associated with the issue

Authorizations
apikeystringRequired

API key for authentication. Format - apikey YOUR_API_KEY

Path parameters
issueIdstringRequired

Issue ID

Body

Request body for updating an issue. All fields are optional.

contentstringOptional

Updated issue content/description

statusstring · enumOptional

Issue status (Open or Resolved)

Possible values:
Responses
201

Issue updated successfully

application/json
post
/issues/{issueId}

Delete Issue

delete
/issues/{issueId}

Deletes an existing issue

Authorizations
apikeystringRequired

API key for authentication. Format - apikey YOUR_API_KEY

Path parameters
issueIdstringRequired

Issue ID

Responses
201

Issue deleted successfully

application/json
delete
/issues/{issueId}
201

Issue deleted successfully

Add Comment to Issue

post
/issues/{issueId}/comment

Adds a new comment to an existing issue.

Comments are used for discussion and collaboration on issues. Each comment records the author and timestamp automatically.

Authorizations
apikeystringRequired

API key for authentication. Format - apikey YOUR_API_KEY

Path parameters
issueIdstringRequired

Issue ID

Body
contentstringRequired

The comment text content

Responses
201

Comment added successfully

application/json
post
/issues/{issueId}/comment

Last updated