Delete surveys
curl --request POST \
--url https://api.redem.io/v2/deleteSurveys \
--header 'Content-Type: application/json' \
--header 'api-key: <api-key>' \
--data '
{
"surveyNames": [
"Customer-Satisfaction-2025",
"NPS-Q3-2025"
]
}
'import requests
url = "https://api.redem.io/v2/deleteSurveys"
payload = { "surveyNames": ["Customer-Satisfaction-2025", "NPS-Q3-2025"] }
headers = {
"api-key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'api-key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({surveyNames: ['Customer-Satisfaction-2025', 'NPS-Q3-2025']})
};
fetch('https://api.redem.io/v2/deleteSurveys', 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.redem.io/v2/deleteSurveys",
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([
'surveyNames' => [
'Customer-Satisfaction-2025',
'NPS-Q3-2025'
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"api-key: <api-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://api.redem.io/v2/deleteSurveys"
payload := strings.NewReader("{\n \"surveyNames\": [\n \"Customer-Satisfaction-2025\",\n \"NPS-Q3-2025\"\n ]\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("api-key", "<api-key>")
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://api.redem.io/v2/deleteSurveys")
.header("api-key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"surveyNames\": [\n \"Customer-Satisfaction-2025\",\n \"NPS-Q3-2025\"\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.redem.io/v2/deleteSurveys")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["api-key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"surveyNames\": [\n \"Customer-Satisfaction-2025\",\n \"NPS-Q3-2025\"\n ]\n}"
response = http.request(request)
puts response.read_body{
"success": true,
"message": "Surveys deleted successfully",
"results": {
"Customer-Satisfaction-2025": {
"success": true,
"deleted": {
"respondents": 120
}
},
"NPS-Q3-2025": {
"success": false,
"message": "Survey not found or not owned by user"
}
}
}{
"success": false,
"message": "Validation Error",
"errors": {
"0": "\"surveyNames\" is required"
}
}Endpoints
Delete Surveys
Delete one or more surveys and all associated data that you own.
POST
/
v2
/
deleteSurveys
Delete surveys
curl --request POST \
--url https://api.redem.io/v2/deleteSurveys \
--header 'Content-Type: application/json' \
--header 'api-key: <api-key>' \
--data '
{
"surveyNames": [
"Customer-Satisfaction-2025",
"NPS-Q3-2025"
]
}
'import requests
url = "https://api.redem.io/v2/deleteSurveys"
payload = { "surveyNames": ["Customer-Satisfaction-2025", "NPS-Q3-2025"] }
headers = {
"api-key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'api-key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({surveyNames: ['Customer-Satisfaction-2025', 'NPS-Q3-2025']})
};
fetch('https://api.redem.io/v2/deleteSurveys', 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.redem.io/v2/deleteSurveys",
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([
'surveyNames' => [
'Customer-Satisfaction-2025',
'NPS-Q3-2025'
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"api-key: <api-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://api.redem.io/v2/deleteSurveys"
payload := strings.NewReader("{\n \"surveyNames\": [\n \"Customer-Satisfaction-2025\",\n \"NPS-Q3-2025\"\n ]\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("api-key", "<api-key>")
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://api.redem.io/v2/deleteSurveys")
.header("api-key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"surveyNames\": [\n \"Customer-Satisfaction-2025\",\n \"NPS-Q3-2025\"\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.redem.io/v2/deleteSurveys")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["api-key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"surveyNames\": [\n \"Customer-Satisfaction-2025\",\n \"NPS-Q3-2025\"\n ]\n}"
response = http.request(request)
puts response.read_body{
"success": true,
"message": "Surveys deleted successfully",
"results": {
"Customer-Satisfaction-2025": {
"success": true,
"deleted": {
"respondents": 120
}
},
"NPS-Q3-2025": {
"success": false,
"message": "Survey not found or not owned by user"
}
}
}{
"success": false,
"message": "Validation Error",
"errors": {
"0": "\"surveyNames\" is required"
}
}Delete one or more surveys that you own. This removes all associated data: respondents, respondent metadata, interaction data, flattened collections, quality settings, and the survey itself.
Authorizations
Body
application/json
Request body for deleting surveys
🔒 Authentication: This endpoint is only accessible via a PRIVATE API key type
Array of survey names to delete.
Minimum array length:
1Response
Successful deletion response.
A variable indicating whether the operation was successful.
A variable that human-readable message providing additional context or confirmation of the requested action.
This object serves as a container to hold the results for the requested data, encapsulating all relevant information and outputs in a structured format.
Show child attributes
Show child attributes
⌘I

