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

API key authentication. Use your environment-specific API key (sk_test_* for sandbox, sk_live_* for production).

Headers

X-Tenant-Id
string
required

Your customer/tenant identifier. Used for data isolation and per-customer metrics. Tenants are created automatically on first request.

Path Parameters

jobId
string
required

Your job ID

Response

Criteria retrieved successfully

jobId
string
required

Your job ID

criteria
object[]
required

The screening criteria for this job

status
enum<string>
required

Criteria status. Archived criteria cannot be used for new scoring requests.

Available options:
active,
archived
createdAt
string<date-time>
required

When the criteria were originally created

updatedAt
string<date-time>
required

When the criteria were last modified