Skip to main content
Skip table of contents

Create issue and link to asset

API calls require an Authorisation header Bearer token.

See API Guides | Get-Access-Token

Create an issue

Valid values for workflow_status: To do, Under investigation, Pending, In progress, Done, Cancelled, Declined

Valid values for priority: Highest, High, Medium, Low, Lowest

Request

CODE
POST https://{your.domain.com}/api/issues
{"name":"issue name","description":"add a description here","workflow_status":"To do","priority":"Highest"}

Response

CODE
{
    "active_flag": true,
    "alternate_name": "",
    "created_at": "2025-06-12T00:18:17.509413+00:00",
    "description": "add a description here",
    "display_id": 163,
    "external_id": null,
    "external_url": null,
    "first_used_at": null,
    "frequency": 0.0,
    "id": "8022aee8-f5b3-3598-9a28-53162e9c192c",
    "last_used_at": null,
    "location": "",
    "manual_creation": false,
    "merge_type": null,
    "name": "issue name",
    "object": {
        ...
    },
    "parent": null,
    "parent_id": null,
    "priority": "Highest",
    "reference": false,
    "score": 0.0,
    "signature": "4739a79",
    "source_id": 1000,
    "updated_at": "2025-06-12T10:18:17.526017+10:00",
    "workflow_status": "To do"
}

 

Link issues to object

issue.id is the id returned from the create issue response.

object.id is the object id returned from List of objects

CODE
PUT https://{your.domain.com}/api/issues/<issue.id>/related?object_id=<object.id>&relationship=IMPACTS

 

JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.