Skip to main content
DELETE
/
v1
/
jobs
/
{jobId}
/
applications
/
{applicationId}
curl -X DELETE 'https://embed.nova.dweet.com/v1/jobs/job-123/applications/app-456' \
  -H 'Authorization: Bearer sk_live_abc123...' \
  -H 'X-Tenant-Id: acme-corp'
{
  "deletionRequest": {
    "id": "delreq_abc123",
    "scope": "application",
    "status": "pending",
    "createdAt": "2026-05-13T09:00:00.000Z",
    "updatedAt": "2026-05-13T09:00:00.000Z",
    "completedAt": null,
    "failedAt": null
  }
}

Documentation Index

Fetch the complete documentation index at: https://nova.dweet.com/docs/llms.txt

Use this file to discover all available pages before exploring further.

Deletes active Nova data for a single application under a specific job. Send the tenant external ID in X-Tenant-Id. The request has no JSON body.
curl -X DELETE 'https://embed.nova.dweet.com/v1/jobs/job-123/applications/app-456' \
  -H 'Authorization: Bearer sk_live_abc123...' \
  -H 'X-Tenant-Id: acme-corp'
{
  "deletionRequest": {
    "id": "delreq_abc123",
    "scope": "application",
    "status": "pending",
    "createdAt": "2026-05-13T09:00:00.000Z",
    "updatedAt": "2026-05-13T09:00:00.000Z",
    "completedAt": null,
    "failedAt": null
  }
}

Behavior

The endpoint returns 202 Accepted with a deletionRequest.id. Deletion runs in the background. Poll Get Deletion Request Status until the request is completed or failed. Duplicate requests return the same deletion request where possible. Unknown applications are accepted without revealing whether active data existed.

Deleted data

Application deletion removes active scoring data, stored resume copies, and delivery records linked to the specified job and application. It doesn’t remove unrelated tenant data. Use tenant deletion when the tenant’s full Embed data set must be removed.
Application deletion is scoped by both jobId and applicationId.

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).

applicationId
string
required

Your application identifier (external ID).

Response

Deletion request accepted

deletionRequest
object
required