Skip to main content
DELETE
/
2022-05
/
segments
/
{segmentId}
/
customers
/
{email}
Delete Lead
curl --request DELETE \
  --url https://api.reportana.com/2022-05/segments/{segmentId}/customers/{email} \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: <content-type>'
import requests

url = "https://api.reportana.com/2022-05/segments/{segmentId}/customers/{email}"

headers = {
"Authorization": "<authorization>",
"Content-Type": "<content-type>"
}

response = requests.delete(url, headers=headers)

print(response.text)
const options = {
method: 'DELETE',
headers: {Authorization: '<authorization>', 'Content-Type': '<content-type>'}
};

fetch('https://api.reportana.com/2022-05/segments/{segmentId}/customers/{email}', 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://api.reportana.com/2022-05/segments/{segmentId}/customers/{email}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "DELETE",
CURLOPT_HTTPHEADER => [
"Authorization: <authorization>",
"Content-Type: <content-type>"
],
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
package main

import (
"fmt"
"net/http"
"io"
)

func main() {

url := "https://api.reportana.com/2022-05/segments/{segmentId}/customers/{email}"

req, _ := http.NewRequest("DELETE", url, nil)

req.Header.Add("Authorization", "<authorization>")
req.Header.Add("Content-Type", "<content-type>")

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.delete("https://api.reportana.com/2022-05/segments/{segmentId}/customers/{email}")
.header("Authorization", "<authorization>")
.header("Content-Type", "<content-type>")
.asString();
require 'uri'
require 'net/http'

url = URI("https://api.reportana.com/2022-05/segments/{segmentId}/customers/{email}")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Delete.new(url)
request["Authorization"] = '<authorization>'
request["Content-Type"] = '<content-type>'

response = http.request(request)
puts response.read_body
{
  "success": true,
  "data": null
}
{
  "success": false,
  "message": "List not found."
}
Use this endpoint to delete a lead from a list in your Reportana store. The email parameter is required and must match the email address of the lead to be removed.

Headers

Authorization
string
required
Basic base64(client_id + ’:’ + client_secret)
Content-Type
string
required
Content-Type:application/json

Parameters

segmentId
string
required
Segmentation ID.Example: 1.
email
string
required
Lead’s email.Example: “johndoe@gmail.com”.
{
  "success": true,
  "data": null
}
{
  "success": false,
  "message": "List not found."
}