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
}
}
Deletion
Delete Application Data
Request deletion for one application under one job
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
}
}
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 returns202 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
Use Authorization: Bearer sk_test_* or Authorization: Bearer sk_live_*.
Headers
Your customer identifier. Tenants are auto-provisioned on first request.
Path Parameters
Your job identifier (external ID).
Your application identifier (external ID).
Response
Deletion request accepted
Show child attributes
Show child attributes
Was this page helpful?