Complete Privacy Task
curl --request POST \
--url https://api.veridical.dev/api/v1/privacy/requests/{request_id}/tasks/{processor}/complete \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"digest_sha256": "<string>",
"receipt_ref": "<string>",
"records_affected": 500000000,
"workspace_id": "<string>",
"client_request_id": "<string>"
}
'import requests
url = "https://api.veridical.dev/api/v1/privacy/requests/{request_id}/tasks/{processor}/complete"
payload = {
"digest_sha256": "<string>",
"receipt_ref": "<string>",
"records_affected": 500000000,
"workspace_id": "<string>",
"client_request_id": "<string>"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
digest_sha256: '<string>',
receipt_ref: '<string>',
records_affected: 500000000,
workspace_id: '<string>',
client_request_id: '<string>'
})
};
fetch('https://api.veridical.dev/api/v1/privacy/requests/{request_id}/tasks/{processor}/complete', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"ctx": {},
"input": "<unknown>"
}
]
}control
Complete Privacy Task
POST
/
api
/
v1
/
privacy
/
requests
/
{request_id}
/
tasks
/
{processor}
/
complete
Complete Privacy Task
curl --request POST \
--url https://api.veridical.dev/api/v1/privacy/requests/{request_id}/tasks/{processor}/complete \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"digest_sha256": "<string>",
"receipt_ref": "<string>",
"records_affected": 500000000,
"workspace_id": "<string>",
"client_request_id": "<string>"
}
'import requests
url = "https://api.veridical.dev/api/v1/privacy/requests/{request_id}/tasks/{processor}/complete"
payload = {
"digest_sha256": "<string>",
"receipt_ref": "<string>",
"records_affected": 500000000,
"workspace_id": "<string>",
"client_request_id": "<string>"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
digest_sha256: '<string>',
receipt_ref: '<string>',
records_affected: 500000000,
workspace_id: '<string>',
client_request_id: '<string>'
})
};
fetch('https://api.veridical.dev/api/v1/privacy/requests/{request_id}/tasks/{processor}/complete', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"ctx": {},
"input": "<unknown>"
}
]
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Headers
Required string length:
32 - 200Body
application/json
Response
Successful Response
The response is of type Response Complete Privacy Task Api V1 Privacy Requests Request Id Tasks Processor Complete Post · object.
Last modified on July 28, 2026
⌘I

