Skip to main content
GET
/
v1
/
jobs
/
{jobId}
/
criteria
Get active criteria
curl --request GET \
  --url https://embed.nova.dweet.com/v1/jobs/{jobId}/criteria \
  --header 'Authorization: Bearer <token>' \
  --header 'X-Tenant-Id: <x-tenant-id>'
{
  "criteria": {
    "id": "<string>",
    "version": 123,
    "status": "ACTIVE",
    "criteria": [
      {
        "id": "<string>",
        "text": "<string>",
        "importance": "MUST_HAVE",
        "order": 123
      }
    ],
    "createdAt": "2023-11-07T05:31:56Z"
  }
}

When to Use

Retrieve the current criteria stored for a job. Useful for:
  • Displaying criteria in your UI for review
  • Debugging scoring behavior
  • Verifying criteria were stored correctly after generation
  • Building admin tools to manage criteria

Status Values

StatusDescription
ACTIVECriteria are available for scoring
ARCHIVEDCriteria have been archived and cannot be used for new scores

Authorizations

Authorization
string
header
required

Use Authorization: Bearer sk_test_* or Authorization: Bearer sk_live_*.

Headers

X-Tenant-Id
string
required

Your customer identifier. Tenants are auto-provisioned on first request.

Path Parameters

jobId
string
required

Your job identifier (external ID).

Response

Active criteria

criteria
object
required