List Job Issues
curl --request GET \
  --url https://{tenant_name}.{region}.techwolf.ai/job_architecture/issues \
  --header 'Authorization: Bearer <token>'
{
  "count": 2,
  "results": [
    {
      "issue_type": "missing_or_short_job_description",
      "data": {
        "job_id": "5cbdbdbe-5f44-4423-8157-5fgqsef7b834c"
      },
      "explanation": "Job description is missing or too short."
    },
    {
      "issue_type": "missing_or_short_job_description",
      "data": {
        "job_id": "62d2c013-ab77-410e-b5fb-2f96eed9c1db"
      },
      "explanation": "Job description is missing or too short."
    }
  ]
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Query Parameters

limit
integer
default:100

The maximal number of entities returned, ordered by the last_updated field and external_id.

Required range: 1 <= x <= 200
Example:

50

offset
integer
default:0

The applied offset for returned entities, results starting from offset up to offset + limit.

Required range: x >= 0
job_id
string<uuid>[]

This parameter can be added multiple times to include more Jobs.

The unique ID in your system, consisting of alphanumeric characters, hyphens and underscores.

Response

OK

count
integer
required

Total number of identified Job data issues.

Required range: x >= 0
Example:

2

results
Job issues · object[]
required

Subset of Job issues starting from offset up to offset + limit.

Example:
[
  {
    "issue_type": "missing_or_short_job_description",
    "data": {
      "job_id": "5cbdbdbe-5f44-4423-8157-5fgqsef7b834c"
    },
    "explanation": "Job description is missing or too short."
  },
  {
    "issue_type": "missing_or_short_job_description",
    "data": {
      "job_id": "62d2c013-ab77-410e-b5fb-2f96eed9c1db"
    },
    "explanation": "Job description is missing or too short."
  }
]