Skip to main content
GET
/
v1
/
consumer
/
privacy
/
jobs
curl https://api.truthlocks.com/v1/consumer/privacy/jobs \
  -H "X-API-Key: tlk_your_key_here"
[
  {
    "id": "prv_export_abc123",
    "job_type": "EXPORT",
    "target_type": "CONSUMER",
    "status": "COMPLETED",
    "created_at": "2026-03-25T12:00:00Z",
    "updated_at": "2026-03-25T12:05:00Z",
    "result": {
      "download_url": "https://api.truthlocks.com/v1/consumer/privacy/exports/prv_export_abc123/download",
      "expires_at": "2026-03-26T12:05:00Z"
    }
  },
  {
    "id": "prv_delete_def456",
    "job_type": "DELETE",
    "target_type": "CONSUMER",
    "status": "PENDING",
    "created_at": "2026-03-25T14:00:00Z",
    "updated_at": "2026-03-25T14:00:00Z"
  }
]
List all privacy requests for the authenticated consumer. Returns export and deletion jobs sorted by creation date (newest first), with real-time status updates. Use this endpoint to poll for export completion or check whether a deletion request has been processed.

Responses

[
  {
    "id": "prv_export_abc123",
    "job_type": "EXPORT",
    "target_type": "CONSUMER",
    "status": "COMPLETED",
    "created_at": "2026-03-25T12:00:00Z",
    "updated_at": "2026-03-25T12:05:00Z",
    "result": {
      "download_url": "https://api.truthlocks.com/v1/consumer/privacy/exports/prv_export_abc123/download",
      "expires_at": "2026-03-26T12:05:00Z"
    }
  },
  {
    "id": "prv_delete_def456",
    "job_type": "DELETE",
    "target_type": "CONSUMER",
    "status": "PENDING",
    "created_at": "2026-03-25T14:00:00Z",
    "updated_at": "2026-03-25T14:00:00Z"
  }
]
curl https://api.truthlocks.com/v1/consumer/privacy/jobs \
  -H "X-API-Key: tlk_your_key_here"

Job statuses

StatusMeaning
PENDINGRequest received, waiting to be processed
APPROVEDRequest approved and queued for execution
PROCESSINGActively being processed
COMPLETEDRequest fulfilled — download link available for exports
FAILEDAn error occurred; contact support
EXPIREDExport download link expired; request a new export

Authorizations

X-API-Key
string
header
required

API key for machine-to-machine authentication

Response

List of privacy jobs

id
string
job_type
enum<string>
Available options:
EXPORT,
DELETE
target_type
string
status
enum<string>
Available options:
PENDING,
APPROVED,
PROCESSING,
COMPLETED,
FAILED,
EXPIRED
created_at
string<date-time>
updated_at
string<date-time>
reason
string
result
object