Forget
curl --request POST \
--url https://{space}.{region}.api.niadra.com/v1/forget \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--header 'Idempotency-Key: <idempotency-key>' \
--data '
{
"target": "handle",
"handle": {
"type": "phone_e164",
"value": "+14155550123"
}
}
'import requests
url = "https://{space}.{region}.api.niadra.com/v1/forget"
payload = {
"target": "handle",
"handle": {
"type": "phone_e164",
"value": "+14155550123"
}
}
headers = {
"Idempotency-Key": "<idempotency-key>",
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
'Idempotency-Key': '<idempotency-key>',
Authorization: 'Bearer <token>',
'Content-Type': 'application/json'
},
body: JSON.stringify({target: 'handle', handle: {type: 'phone_e164', value: '+14155550123'}})
};
fetch('https://{space}.{region}.api.niadra.com/v1/forget', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://{space}.{region}.api.niadra.com/v1/forget",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'target' => 'handle',
'handle' => [
'type' => 'phone_e164',
'value' => '+14155550123'
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json",
"Idempotency-Key: <idempotency-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://{space}.{region}.api.niadra.com/v1/forget"
payload := strings.NewReader("{\n \"target\": \"handle\",\n \"handle\": {\n \"type\": \"phone_e164\",\n \"value\": \"+14155550123\"\n }\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Idempotency-Key", "<idempotency-key>")
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://{space}.{region}.api.niadra.com/v1/forget")
.header("Idempotency-Key", "<idempotency-key>")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"target\": \"handle\",\n \"handle\": {\n \"type\": \"phone_e164\",\n \"value\": \"+14155550123\"\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://{space}.{region}.api.niadra.com/v1/forget")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Idempotency-Key"] = '<idempotency-key>'
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"target\": \"handle\",\n \"handle\": {\n \"type\": \"phone_e164\",\n \"value\": \"+14155550123\"\n }\n}"
response = http.request(request)
puts response.read_body{
"request_id": "0192f7b0-4c11-7e2a-9d30-1a2b3c4d5e6f",
"target_kind": "handle",
"target_id": "0192f7a0-9f01-7a22-8b33-4c5d6e7f8091",
"status": "pending",
"requested_at": "2026-09-22T18:00:00Z",
"completed_at": null,
"erased": {},
"export_run_ids": [],
"receipt_hash": null
}{
"code": "<string>",
"status": 123,
"title": "<string>",
"detail": "<string>",
"request_id": "<string>",
"type": "about:blank"
}Privacy and audit
Forget
Erases a profile, handle or conversation by lineage and issues an erasure receipt.
POST
/
v1
/
forget
Forget
curl --request POST \
--url https://{space}.{region}.api.niadra.com/v1/forget \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--header 'Idempotency-Key: <idempotency-key>' \
--data '
{
"target": "handle",
"handle": {
"type": "phone_e164",
"value": "+14155550123"
}
}
'import requests
url = "https://{space}.{region}.api.niadra.com/v1/forget"
payload = {
"target": "handle",
"handle": {
"type": "phone_e164",
"value": "+14155550123"
}
}
headers = {
"Idempotency-Key": "<idempotency-key>",
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
'Idempotency-Key': '<idempotency-key>',
Authorization: 'Bearer <token>',
'Content-Type': 'application/json'
},
body: JSON.stringify({target: 'handle', handle: {type: 'phone_e164', value: '+14155550123'}})
};
fetch('https://{space}.{region}.api.niadra.com/v1/forget', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://{space}.{region}.api.niadra.com/v1/forget",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'target' => 'handle',
'handle' => [
'type' => 'phone_e164',
'value' => '+14155550123'
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json",
"Idempotency-Key: <idempotency-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://{space}.{region}.api.niadra.com/v1/forget"
payload := strings.NewReader("{\n \"target\": \"handle\",\n \"handle\": {\n \"type\": \"phone_e164\",\n \"value\": \"+14155550123\"\n }\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Idempotency-Key", "<idempotency-key>")
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://{space}.{region}.api.niadra.com/v1/forget")
.header("Idempotency-Key", "<idempotency-key>")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"target\": \"handle\",\n \"handle\": {\n \"type\": \"phone_e164\",\n \"value\": \"+14155550123\"\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://{space}.{region}.api.niadra.com/v1/forget")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Idempotency-Key"] = '<idempotency-key>'
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"target\": \"handle\",\n \"handle\": {\n \"type\": \"phone_e164\",\n \"value\": \"+14155550123\"\n }\n}"
response = http.request(request)
puts response.read_body{
"request_id": "0192f7b0-4c11-7e2a-9d30-1a2b3c4d5e6f",
"target_kind": "handle",
"target_id": "0192f7a0-9f01-7a22-8b33-4c5d6e7f8091",
"status": "pending",
"requested_at": "2026-09-22T18:00:00Z",
"completed_at": null,
"erased": {},
"export_run_ids": [],
"receipt_hash": null
}{
"code": "<string>",
"status": 123,
"title": "<string>",
"detail": "<string>",
"request_id": "<string>",
"type": "about:blank"
}Authorizations
sourceKeypersonToken
nia_sk_...
Headers
Mandatory. Kept 24 hours with the body hash; the same key with a different body returns 409.
Required string length:
1 - 256Body
application/json
What to forget. Handles travel only in the body, never in a URL.
Response
Accepted. The erasure is queued; status moves from pending to running and completed.
Available options:
pending, running, completed, failed Profile id, handle id or conversation id; never the handle value.
Available options:
profile, handle, conversation Rows erased per table.
Show child attributes
Show child attributes
Continuous export runs that already carried erased rows.
Hex SHA-256 of the erasure receipt.

