GDPR Art. 16 — Right to rectification
PUT /api/v1/export/rectify
Queues a job to correct inaccurate personal data held for the authenticated tenant. Returns 202 Accepted with a job_id. The rectification is applied asynchronously across all relevant tenant tables.
Authorizations
Request Body required
Request body for PUT /export/rectify (GDPR Art. 16).
Attributes: field_name: The name of the data field to be corrected. current_value: The inaccurate value currently held. corrected_value: The accurate replacement value.
object
The correct replacement value
The inaccurate value currently stored
Name of the field containing inaccurate data
Responses
202
Successful Response
Response body for PUT /export/rectify (GDPR Art. 16).
Attributes: job_id: Unique identifier for the rectification job. field_name: The field being corrected. status: ‘accepted’ — job is queued for async processing. message: Human-readable description.
object
422
Validation Error