Skip to content

GET /issue-type

Get Issue Type

GET
/issue-type

List issue types, optionally filtered by key, code, or criticality.

Executes Queries.FETCH_ISSUE_TYPES against ArangoDB with the provided
filter parameters. Returns all active types by default; pass active_only=false
to include archived types. Each result includes associated print templates.

Emits: (direct transaction — no event class)

Required scope: collaboration:issue-type:read

Authorizations

OAuth2PasswordBearer
password Flow
Token URL"/api/auth"
Scopes:
  • "admin"User can access and edit users and system settings
  • "library"User can access and edit products
  • "production"User can access and edit production plans
  • "operator"User can access the operator panel and make production declarations

Parameters

Query Parameters

key
code
critical
active_only
Type
boolean
Default
true

Responses

Successful Response

application/json
JSON
[
  
{
  
  
"_id": "string",
  
  
"_key": "string",
  
  
"_rev": "string",
  
  
"name": "Inspection Failure",
  
  
"code": "INSP-FAIL",
  
  
"active": true,
  
  
"description": "Used when an inspection step fails due to dimensional non-conformance.",
  
  
"icon": "warning",
  
  
"form_template": [
  
  
  
{
  
  
  
  
"_key": "ffd-001",
  
  
  
  
"custom_field_key": "cf-001",
  
  
  
  
"multiple": false,
  
  
  
  
"label": "Colour Code",
  
  
  
  
"hint": "Verify against approved colour chart",
  
  
  
  
"default": "pass",
  
  
  
  
"mandatory": false,
  
  
  
  
"hidden": false
  
  
  
}
  
  
],
  
  
"critical": false,
  
  
"print_templates": [
  
  
  
{
  
  
  
  
"_id": "string",
  
  
  
  
"_key": "string",
  
  
  
  
"_rev": "string",
  
  
  
  
"name": "Serial Label A6",
  
  
  
  
"description": "A6 label for finished goods with QR code and serial number",
  
  
  
  
"template": {
  
  
  
  
  
"basePdf": "string",
  
  
  
  
  
"sampledata": [
  
  
  
  
  
  
{
  
  
  
  
  
  
  
"additionalProperties": "string"
  
  
  
  
  
  
}
  
  
  
  
  
],
  
  
  
  
  
"schemas": [
  
  
  
  
  
  
[
  
  
  
  
  
  
]
  
  
  
  
  
],
  
  
  
  
  
"pdfmeVersion": "5.5.0"
  
  
  
  
},
  
  
  
  
"entities": 3
  
  
  
}
  
  
]
  
}
]

Samples

Powered by VitePress OpenAPI

Released under the Apache 2.0 License.