Download project responses
curl --request POST \
--url https://responses.sightx.io/responses-capture-service/v1/responses/info/export \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"projectId": "{{projectId}}",
"fromDate": "2020-01-01",
"toDate": "2022-12-31",
"filter": []
}
'import requests
url = "https://responses.sightx.io/responses-capture-service/v1/responses/info/export"
payload = {
"projectId": "{{projectId}}",
"fromDate": "2020-01-01",
"toDate": "2022-12-31",
"filter": []
}
headers = {
"Authorization": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
projectId: '{{projectId}}',
fromDate: '2020-01-01',
toDate: '2022-12-31',
filter: []
})
};
fetch('https://responses.sightx.io/responses-capture-service/v1/responses/info/export', 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://responses.sightx.io/responses-capture-service/v1/responses/info/export",
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([
'projectId' => '{{projectId}}',
'fromDate' => '2020-01-01',
'toDate' => '2022-12-31',
'filter' => [
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: <api-key>",
"Content-Type: application/json"
],
]);
$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://responses.sightx.io/responses-capture-service/v1/responses/info/export"
payload := strings.NewReader("{\n \"projectId\": \"{{projectId}}\",\n \"fromDate\": \"2020-01-01\",\n \"toDate\": \"2022-12-31\",\n \"filter\": []\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "<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://responses.sightx.io/responses-capture-service/v1/responses/info/export")
.header("Authorization", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"projectId\": \"{{projectId}}\",\n \"fromDate\": \"2020-01-01\",\n \"toDate\": \"2022-12-31\",\n \"filter\": []\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://responses.sightx.io/responses-capture-service/v1/responses/info/export")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"projectId\": \"{{projectId}}\",\n \"fromDate\": \"2020-01-01\",\n \"toDate\": \"2022-12-31\",\n \"filter\": []\n}"
response = http.request(request)
puts response.read_body"PK\u0003\u0004\n\u0000\u0000\u0000\u0000\u0000�\u0000.S֒|\u0011Z\u0001\u0000\u0000Z\u0001\u0000\u0000\u0011\u0000\u0000\u0000docProps/core.xml\n<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n<cp:coreProperties xmlns:cp=\"http://schemas.openxmlformats.org/package/2006/metadata/core-properties\" xmlns:dc=\"http://purl.org/dc/elements/1.1/\" xmlns:dcterms=\"http://purl.org/dc/terms/\" xmlns:dcmitype=\"http://purl.org/dc/dcmitype/\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"/>PK\u0003\u0004\n\u0000\u0000\u0000\u0000\u0000�\u0000.S?[\u001ch5\u0002\u0000\u00005\u0002\u0000\u0000\u0010\u0000\u0000\u0000docProps/app.xml\n<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n<Properties xmlns=\"http://schemas.openxmlformats.org/officeDocument/2006/extended-properties\" xmlns:vt=\"http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes\">\n <Application>SheetJS</Application>\n <HeadingPairs>\n <vt:vector size=\"2\" baseType=\"variant\">\n <vt:variant>\n <vt:lpstr>Worksheets</vt:lpstr>\n </vt:variant>\n <vt:variant>\n <vt:i4>1</vt:i4>\n </vt:variant>\n </vt:vector>\n </HeadingPairs>\n <TitlesOfParts>\n <vt:vector size=\"1\" baseType=\"lpstr\">\n <vt:lpstr>Responses</vt:lpstr>\n </vt:vector>\n </TitlesOfParts>\n</Properties>PK\u0003\u0004\n\u0000\u0000\u0000\u0000\u0000�\u0000.S���}E\u0001\u0000\u0000E\u0001\u0000\u0000\u000f\u0000\u0000\u0000xl/workbook.xml\n<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n<workbook xmlns=\"http://schemas.openxmlformats.org/spreadsheetml/2006/main\" xmlns:r=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\">\n <workbookPr codeName=\"ThisWorkbook\"/>\n <sheets>\n <sheet name=\"Responses\" sheetId=\"1\" r:id=\"rId1\"/>\n </sheets>\n</workbook>PK\u0003\u0004\n\u0000\u0000\u0000\u0000\u0000�\u0000.S�턫�\n\u0000\u0000�\n\u0000\u0000\u0018\u0000\u0000\u0000xl/worksheets/sheet1.xml\n<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n<worksheet xmlns=\"http://schemas.openxmlformats.org/spreadsheetml/2006/main\" xmlns:r=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\">\n <sheetPr codeName=\"Responses\"/>\n <dimension ref=\"A1:G9\"/>\n <sheetViews>\n <sheetView workbookViewId=\"0\"/>\n </sheetViews>\n <sheetData>\n <row r=\"1\">\n <c r=\"A1\" t=\"str\">\n <v>Code</v>\n </c>\n <c r=\"B1\" t=\"str\">\n <v>IP</v>\n </c>\n <c r=\"C1\" t=\"str\">\n <v>Submitted On</v>\n </c>\n <c r=\"D1\" t=\"str\">\n <v>Time to Complete</v>\n </c>\n <c r=\"E1\" t=\"str\">\n <v>Answers</v>\n </c>\n <c r=\"F1\" t=\"str\">\n <v>Country</v>\n </c>\n <c r=\"G1\" t=\"str\">\n <v>City</v>\n </c>\n </row>\n <row r=\"2\">\n <c r=\"A2\" t=\"str\">\n <v>WaUeRW4KAq</v>\n </c>\n <c r=\"B2\" t=\"str\">\n <v>201.183.99.58</v>\n </c>\n <c r=\"C2\" t=\"str\">\n <v>07/01/2021</v>\n </c>\n <c r=\"D2\">\n <v>363</v>\n </c>\n <c r=\"E2\">\n <v>130</v>\n </c>\n <c r=\"F2\" t=\"str\">\n <v>Ecuador</v>\n </c>\n <c r=\"G2\" t=\"str\">\n <v>Guayaquil</v>\n </c>\n </row>\n <row r=\"3\">\n <c r=\"A3\" t=\"str\">\n <v>TUfgli6wwl</v>\n </c>\n <c r=\"B3\" t=\"str\">\n <v>186.101.154.128</v>\n </c>\n <c r=\"C3\" t=\"str\">\n <v>07/01/2021</v>\n </c>\n <c r=\"D3\">\n <v>450</v>\n </c>\n <c r=\"E3\">\n <v>114</v>\n </c>\n <c r=\"F3\" t=\"str\">\n <v>Ecuador</v>\n </c>\n <c r=\"G3\" t=\"str\">\n <v>Latacunga</v>\n </c>\n </row>\n <row r=\"4\">\n <c r=\"A4\" t=\"str\">\n <v>hspJwBQcSC</v>\n </c>\n <c r=\"B4\" t=\"str\">\n <v>186.33.167.248</v>\n </c>\n <c r=\"C4\" t=\"str\">\n <v>07/01/2021</v>\n </c>\n <c r=\"D4\">\n <v>474</v>\n </c>\n <c r=\"E4\">\n <v>98</v>\n </c>\n <c r=\"F4\" t=\"str\">\n <v>Ecuador</v>\n </c>\n <c r=\"G4\" t=\"str\">\n <v>Quito</v>\n </c>\n </row>\n <row r=\"5\">\n <c r=\"A5\" t=\"str\">\n <v>_ELUXWs4uQ</v>\n </c>\n <c r=\"B5\" t=\"str\">\n <v>157.100.173.245</v>\n </c>\n <c r=\"C5\" t=\"str\">\n <v>07/01/2021</v>\n </c>\n <c r=\"D5\">\n <v>788</v>\n </c>\n <c r=\"E5\">\n <v>114</v>\n </c>\n <c r=\"F5\" t=\"str\">\n <v>Ecuador</v>\n </c>\n <c r=\"G5\" t=\"str\">\n <v>Quito</v>\n </c>\n </row>\n <row r=\"6\">\n <c r=\"A6\" t=\"str\">\n <v>bcjqGOr6Fe</v>\n </c>\n <c r=\"B6\" t=\"str\">\n <v>157.100.172.103</v>\n </c>\n <c r=\"C6\" t=\"str\">\n <v>07/01/2021</v>\n </c>\n <c r=\"D6\">\n <v>1033</v>\n </c>\n <c r=\"E6\">\n <v>114</v>\n </c>\n <c r=\"F6\" t=\"str\">\n <v>Ecuador</v>\n </c>\n <c r=\"G6\" t=\"str\">\n <v>Quito</v>\n </c>\n </row>\n <row r=\"7\">\n <c r=\"A7\" t=\"str\">\n <v>TUTPaWA9ux</v>\n </c>\n <c r=\"B7\" t=\"str\">\n <v>138.94.121.153</v>\n </c>\n <c r=\"C7\" t=\"str\">\n <v>07/01/2021</v>\n </c>\n <c r=\"D7\">\n <v>311</v>\n </c>\n <c r=\"E7\">\n <v>82</v>\n </c>\n <c r=\"F7\" t=\"str\">\n <v>Honduras</v>\n </c>\n <c r=\"G7\" t=\"str\">\n <v>Tegucigalpa</v>\n </c>\n </row>\n <row r=\"8\">\n <c r=\"A8\" t=\"str\">\n <v>y2qCwVTvBz</v>\n </c>\n <c r=\"B8\" t=\"str\">\n <v>157.100.172.40</v>\n </c>\n <c r=\"C8\" t=\"str\">\n <v>07/01/2021</v>\n </c>\n <c r=\"D8\">\n <v>708</v>\n </c>\n <c r=\"E8\">\n <v>98</v>\n </c>\n <c r=\"F8\" t=\"str\">\n <v>Ecuador</v>\n </c>\n <c r=\"G8\" t=\"str\">\n <v>Quito</v>\n </c>\n </row>\n <row r=\"9\">\n <c r=\"A9\" t=\"str\">\n <v>N9LFvUkij2</v>\n </c>\n <c r=\"B9\" t=\"str\">\n <v>186.233.184.188</v>\n </c>\n <c r=\"C9\" t=\"str\">\n <v>07/01/2021</v>\n </c>\n <c r=\"D9\">\n <v>474</v>\n </c>\n <c r=\"E9\">\n <v>114</v>\n </c>\n <c r=\"F9\" t=\"str\">\n <v>United States</v>\n </c>\n <c r=\"G9\" t=\"str\">\n <v>Miami</v>\n </c>\n </row>\n </sheetData>\n</worksheet>PK\u0003\u0004\n\u0000\u0000\u0000\u0000\u0000�\u0000.S0\u000f�k�\u001d\u0000\u0000�\u001d\u0000\u0000\u0013\u0000\u0000\u0000xl/theme/theme1.xml\n<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n<a:theme xmlns:a=\"http://schemas.openxmlformats.org/drawingml/2006/main\" name=\"Office Theme\">\n <a:themeElements>\n <a:clrScheme name=\"Office\">\n <a:dk1>\n <a:sysClr val=\"windowText\" lastClr=\"000000\"/>\n </a:dk1>\n <a:lt1>\n <a:sysClr val=\"window\" lastClr=\"FFFFFF\"/>\n </a:lt1>\n <a:dk2>\n <a:srgbClr val=\"1F497D\"/>\n </a:dk2>\n <a:lt2>\n <a:srgbClr val=\"EEECE1\"/>\n </a:lt2>\n <a:accent1>\n <a:srgbClr val=\"4F81BD\"/>\n </a:accent1>\n <a:accent2>\n <a:srgbClr val=\"C0504D\"/>\n </a:accent2>\n <a:accent3>\n <a:srgbClr val=\"9BBB59\"/>\n </a:accent3>\n <a:accent4>\n <a:srgbClr val=\"8064A2\"/>\n </a:accent4>\n <a:accent5>\n <a:srgbClr val=\"4BACC6\"/>\n </a:accent5>\n <a:accent6>\n <a:srgbClr val=\"F79646\"/>\n </a:accent6>\n <a:hlink>\n <a:srgbClr val=\"0000FF\"/>\n </a:hlink>\n <a:folHlink>\n <a:srgbClr val=\"800080\"/>\n </a:folHlink>\n </a:clrScheme>\n <a:fontScheme name=\"Office\">\n <a:majorFont>\n <a:latin typeface=\"Cambria\"/>\n <a:ea typeface=\"\"/>\n <a:cs typeface=\"\"/>\n <a:font script=\"Jpan\" typeface=\"MS Pゴシック\"/>\n <a:font script=\"Hang\" typeface=\"맑은 고딕\"/>\n <a:font script=\"Hans\" typeface=\"宋体\"/>\n <a:font script=\"Hant\" typeface=\"新細明體\"/>\n <a:font script=\"Arab\" typeface=\"Times New Roman\"/>\n <a:font script=\"Hebr\" typeface=\"Times New Roman\"/>\n <a:font script=\"Thai\" typeface=\"Tahoma\"/>\n <a:font script=\"Ethi\" typeface=\"Nyala\"/>\n <a:font script=\"Beng\" typeface=\"Vrinda\"/>\n <a:font script=\"Gujr\" typeface=\"Shruti\"/>\n <a:font script=\"Khmr\" typeface=\"MoolBoran\"/>\n <a:font script=\"Knda\" typeface=\"Tunga\"/>\n <a:font script=\"Guru\" typeface=\"Raavi\"/>\n <a:font script=\"Cans\" typeface=\"Euphemia\"/>\n <a:font script=\"Cher\" typeface=\"Plantagenet Cherokee\"/>\n <a:font script=\"Yiii\" typeface=\"Microsoft Yi Baiti\"/>\n <a:font script=\"Tibt\" typeface=\"Microsoft Himalaya\"/>\n <a:font script=\"Thaa\" typeface=\"MV Boli\"/>\n <a:font script=\"Deva\" typeface=\"Mangal\"/>\n <a:font script=\"Telu\" typeface=\"Gautami\"/>\n <a:font script=\"Taml\" typeface=\"Latha\"/>\n <a:font script=\"Syrc\" typeface=\"Estrangelo Edessa\"/>\n <a:font script=\"Orya\" typeface=\"Kalinga\"/>\n <a:font script=\"Mlym\" typeface=\"Kartika\"/>\n <a:font script=\"Laoo\" typeface=\"DokChampa\"/>\n <a:font script=\"Sinh\" typeface=\"Iskoola Pota\"/>\n <a:font script=\"Mong\" typeface=\"Mongolian Baiti\"/>\n <a:font script=\"Viet\" typeface=\"Times New Roman\"/>\n <a:font script=\"Uigh\" typeface=\"Microsoft Uighur\"/>\n <a:font script=\"Geor\" typeface=\"Sylfaen\"/>\n </a:majorFont>\n <a:minorFont>\n <a:latin typeface=\"Calibri\"/>\n <a:ea typeface=\"\"/>\n <a:cs typeface=\"\"/>\n <a:font script=\"Jpan\" typeface=\"MS Pゴシック\"/>\n <a:font script=\"Hang\" typeface=\"맑은 고딕\"/>\n <a:font script=\"Hans\" typeface=\"宋体\"/>\n <a:font script=\"Hant\" typeface=\"新細明體\"/>\n <a:font script=\"Arab\" typeface=\"Arial\"/>\n <a:font script=\"Hebr\" typeface=\"Arial\"/>\n <a:font script=\"Thai\" typeface=\"Tahoma\"/>\n <a:font script=\"Ethi\" typeface=\"Nyala\"/>\n <a:font script=\"Beng\" typeface=\"Vrinda\"/>\n <a:font script=\"Gujr\" typeface=\"Shruti\"/>\n <a:font script=\"Khmr\" typeface=\"DaunPenh\"/>\n <a:font script=\"Knda\" typeface=\"Tunga\"/>\n <a:font script=\"Guru\" typeface=\"Raavi\"/>\n <a:font script=\"Cans\" typeface=\"Euphemia\"/>\n <a:font script=\"Cher\" typeface=\"Plantagenet Cherokee\"/>\n <a:font script=\"Yiii\" typeface=\"Microsoft Yi Baiti\"/>\n <a:font script=\"Tibt\" typeface=\"Microsoft Himalaya\"/>\n <a:font script=\"Thaa\" typeface=\"MV Boli\"/>\n <a:font script=\"Deva\" typeface=\"Mangal\"/>\n <a:font script=\"Telu\" typeface=\"Gautami\"/>\n <a:font script=\"Taml\" typeface=\"Latha\"/>\n <a:font script=\"Syrc\" typeface=\"Estrangelo Edessa\"/>\n <a:font script=\"Orya\" typeface=\"Kalinga\"/>\n <a:font script=\"Mlym\" typeface=\"Kartika\"/>\n <a:font script=\"Laoo\" typeface=\"DokChampa\"/>\n <a:font script=\"Sinh\" typeface=\"Iskoola Pota\"/>\n <a:font script=\"Mong\" typeface=\"Mongolian Baiti\"/>\n <a:font script=\"Viet\" typeface=\"Arial\"/>\n <a:font script=\"Uigh\" typeface=\"Microsoft Uighur\"/>\n <a:font script=\"Geor\" typeface=\"Sylfaen\"/>\n </a:minorFont>\n </a:fontScheme>\n <a:fmtScheme name=\"Office\">\n <a:fillStyleLst>\n <a:solidFill>\n <a:schemeClr val=\"phClr\"/>\n </a:solidFill>\n <a:gradFill rotWithShape=\"1\">\n <a:gsLst>\n <a:gs pos=\"0\">\n <a:schemeClr val=\"phClr\">\n <a:tint val=\"50000\"/>\n <a:satMod val=\"300000\"/>\n </a:schemeClr>\n </a:gs>\n <a:gs pos=\"35000\">\n <a:schemeClr val=\"phClr\">\n <a:tint val=\"37000\"/>\n <a:satMod val=\"300000\"/>\n </a:schemeClr>\n </a:gs>\n <a:gs pos=\"100000\">\n <a:schemeClr val=\"phClr\">\n <a:tint val=\"15000\"/>\n <a:satMod val=\"350000\"/>\n </a:schemeClr>\n </a:gs>\n </a:gsLst>\n <a:lin ang=\"16200000\" scaled=\"1\"/>\n </a:gradFill>\n <a:gradFill rotWithShape=\"1\">\n <a:gsLst>\n <a:gs pos=\"0\">\n <a:schemeClr val=\"phClr\">\n <a:tint val=\"100000\"/>\n <a:shade val=\"100000\"/>\n <a:satMod val=\"130000\"/>\n </a:schemeClr>\n </a:gs>\n <a:gs pos=\"100000\">\n <a:schemeClr val=\"phClr\">\n <a:tint val=\"50000\"/>\n <a:shade val=\"100000\"/>\n <a:satMod val=\"350000\"/>\n </a:schemeClr>\n </a:gs>\n </a:gsLst>\n <a:lin ang=\"16200000\" scaled=\"0\"/>\n </a:gradFill>\n </a:fillStyleLst>\n <a:lnStyleLst>\n <a:ln w=\"9525\" cap=\"flat\" cmpd=\"sng\" algn=\"ctr\">\n <a:solidFill>\n <a:schemeClr val=\"phClr\">\n <a:shade val=\"95000\"/>\n <a:satMod val=\"105000\"/>\n </a:schemeClr>\n </a:solidFill>\n <a:prstDash val=\"solid\"/>\n </a:ln>\n <a:ln w=\"25400\" cap=\"flat\" cmpd=\"sng\" algn=\"ctr\">\n <a:solidFill>\n <a:schemeClr val=\"phClr\"/>\n </a:solidFill>\n <a:prstDash val=\"solid\"/>\n </a:ln>\n <a:ln w=\"38100\" cap=\"flat\" cmpd=\"sng\" algn=\"ctr\">\n <a:solidFill>\n <a:schemeClr val=\"phClr\"/>\n </a:solidFill>\n <a:prstDash val=\"solid\"/>\n </a:ln>\n </a:lnStyleLst>\n <a:effectStyleLst>\n <a:effectStyle>\n <a:effectLst>\n <a:outerShdw blurRad=\"40000\" dist=\"20000\" dir=\"5400000\" rotWithShape=\"0\">\n <a:srgbClr val=\"000000\">\n <a:alpha val=\"38000\"/>\n </a:srgbClr>\n </a:outerShdw>\n </a:effectLst>\n </a:effectStyle>\n <a:effectStyle>\n <a:effectLst>\n <a:outerShdw blurRad=\"40000\" dist=\"23000\" dir=\"5400000\" rotWithShape=\"0\">\n <a:srgbClr val=\"000000\">\n <a:alpha val=\"35000\"/>\n </a:srgbClr>\n </a:outerShdw>\n </a:effectLst>\n </a:effectStyle>\n <a:effectStyle>\n <a:effectLst>\n <a:outerShdw blurRad=\"40000\" dist=\"23000\" dir=\"5400000\" rotWithShape=\"0\">\n <a:srgbClr val=\"000000\">\n <a:alpha val=\"35000\"/>\n </a:srgbClr>\n </a:outerShdw>\n </a:effectLst>\n <a:scene3d>\n <a:camera prst=\"orthographicFront\">\n <a:rot lat=\"0\" lon=\"0\" rev=\"0\"/>\n </a:camera>\n <a:lightRig rig=\"threePt\" dir=\"t\">\n <a:rot lat=\"0\" lon=\"0\" rev=\"1200000\"/>\n </a:lightRig>\n </a:scene3d>\n <a:sp3d>\n <a:bevelT w=\"63500\" h=\"25400\"/>\n </a:sp3d>\n </a:effectStyle>\n </a:effectStyleLst>\n <a:bgFillStyleLst>\n <a:solidFill>\n <a:schemeClr val=\"phClr\"/>\n </a:solidFill>\n <a:gradFill rotWithShape=\"1\">\n <a:gsLst>\n <a:gs pos=\"0\">\n <a:schemeClr val=\"phClr\">\n <a:tint val=\"40000\"/>\n <a:satMod val=\"350000\"/>\n </a:schemeClr>\n </a:gs>\n <a:gs pos=\"40000\">\n <a:schemeClr val=\"phClr\">\n <a:tint val=\"45000\"/>\n <a:shade val=\"99000\"/>\n <a:satMod val=\"350000\"/>\n </a:schemeClr>\n </a:gs>\n <a:gs pos=\"100000\">\n <a:schemeClr val=\"phClr\">\n <a:shade val=\"20000\"/>\n <a:satMod val=\"255000\"/>\n </a:schemeClr>\n </a:gs>\n </a:gsLst>\n <a:path path=\"circle\">\n <a:fillToRect l=\"50000\" t=\"-80000\" r=\"50000\" b=\"180000\"/>\n </a:path>\n </a:gradFill>\n <a:gradFill rotWithShape=\"1\">\n <a:gsLst>\n <a:gs pos=\"0\">\n <a:schemeClr val=\"phClr\">\n <a:tint val=\"80000\"/>\n <a:satMod val=\"300000\"/>\n </a:schemeClr>\n </a:gs>\n <a:gs pos=\"100000\">\n <a:schemeClr val=\"phClr\">\n <a:shade val=\"30000\"/>\n <a:satMod val=\"200000\"/>\n </a:schemeClr>\n </a:gs>\n </a:gsLst>\n <a:path path=\"circle\">\n <a:fillToRect l=\"50000\" t=\"50000\" r=\"50000\" b=\"50000\"/>\n </a:path>\n </a:gradFill>\n </a:bgFillStyleLst>\n </a:fmtScheme>\n </a:themeElements>\n <a:objectDefaults>\n <a:spDef>\n <a:spPr/>\n <a:bodyPr/>\n <a:lstStyle/>\n <a:style>\n <a:lnRef idx=\"1\">\n <a:schemeClr val=\"accent1\"/>\n </a:lnRef>\n <a:fillRef idx=\"3\">\n <a:schemeClr val=\"accent1\"/>\n </a:fillRef>\n <a:effectRef idx=\"2\">\n <a:schemeClr val=\"accent1\"/>\n </a:effectRef>\n <a:fontRef idx=\"minor\">\n <a:schemeClr val=\"lt1\"/>\n </a:fontRef>\n </a:style>\n </a:spDef>\n <a:lnDef>\n <a:spPr/>\n <a:bodyPr/>\n <a:lstStyle/>\n <a:style>\n <a:lnRef idx=\"2\">\n <a:schemeClr val=\"accent1\"/>\n </a:lnRef>\n <a:fillRef idx=\"0\">\n <a:schemeClr val=\"accent1\"/>\n </a:fillRef>\n <a:effectRef idx=\"1\">\n <a:schemeClr val=\"accent1\"/>\n </a:effectRef>\n <a:fontRef idx=\"minor\">\n <a:schemeClr val=\"tx1\"/>\n </a:fontRef>\n </a:style>\n </a:lnDef>\n </a:objectDefaults>\n <a:extraClrSchemeLst/>\n</a:theme>PK\u0003\u0004\n\u0000\u0000\u0000\u0000\u0000�\u0000.SU�\u0004�Z\u0004\u0000\u0000Z\u0004\u0000\u0000\r\u0000\u0000\u0000xl/styles.xml\n<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n<styleSheet xmlns=\"http://schemas.openxmlformats.org/spreadsheetml/2006/main\" xmlns:vt=\"http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes\">\n <numFmts count=\"1\">\n <numFmt numFmtId=\"56\" formatCode=\""上午/下午 "hh"時"mm"分"ss"秒 "\"/>\n </numFmts>\n <fonts count=\"1\">\n <font>\n <sz val=\"12\"/>\n <color theme=\"1\"/>\n <name val=\"Calibri\"/>\n <family val=\"2\"/>\n <scheme val=\"minor\"/>\n </font>\n </fonts>\n <fills count=\"2\">\n <fill>\n <patternFill patternType=\"none\"/>\n </fill>\n <fill>\n <patternFill patternType=\"gray125\"/>\n </fill>\n </fills>\n <borders count=\"1\">\n <border>\n <left/>\n <right/>\n <top/>\n <bottom/>\n <diagonal/>\n </border>\n </borders>\n <cellStyleXfs count=\"1\">\n <xf numFmtId=\"0\" fontId=\"0\" fillId=\"0\" borderId=\"0\"/>\n </cellStyleXfs>\n <cellXfs count=\"1\">\n <xf numFmtId=\"0\" fontId=\"0\" fillId=\"0\" borderId=\"0\" xfId=\"0\" applyNumberFormat=\"1\"/>\n </cellXfs>\n <cellStyles count=\"1\">\n <cellStyle name=\"Normal\" xfId=\"0\" builtinId=\"0\"/>\n </cellStyles>\n <dxfs count=\"0\"/>\n <tableStyles count=\"0\" defaultTableStyle=\"TableStyleMedium9\" defaultPivotStyle=\"PivotStyleMedium4\"/>\n</styleSheet>PK\u0003\u0004\n\u0000\u0000\u0000\u0000\u0000�\u0000.S�\u001b0\u0007\u0000\u00000\u0007\u0000\u0000\u0013\u0000\u0000\u0000[Content_Types].xml\n<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n<Types xmlns=\"http://schemas.openxmlformats.org/package/2006/content-types\" xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\">\n <Default Extension=\"xml\" ContentType=\"application/xml\"/>\n <Default Extension=\"bin\" ContentType=\"application/vnd.ms-excel.sheet.binary.macroEnabled.main\"/>\n <Default Extension=\"vml\" ContentType=\"application/vnd.openxmlformats-officedocument.vmlDrawing\"/>\n <Default Extension=\"bmp\" ContentType=\"image/bmp\"/>\n <Default Extension=\"png\" ContentType=\"image/png\"/>\n <Default Extension=\"gif\" ContentType=\"image/gif\"/>\n <Default Extension=\"emf\" ContentType=\"image/x-emf\"/>\n <Default Extension=\"wmf\" ContentType=\"image/x-wmf\"/>\n <Default Extension=\"jpg\" ContentType=\"image/jpeg\"/>\n <Default Extension=\"jpeg\" ContentType=\"image/jpeg\"/>\n <Default Extension=\"tif\" ContentType=\"image/tiff\"/>\n <Default Extension=\"tiff\" ContentType=\"image/tiff\"/>\n <Default Extension=\"pdf\" ContentType=\"application/pdf\"/>\n <Default Extension=\"rels\" ContentType=\"application/vnd.openxmlformats-package.relationships+xml\"/>\n <Override PartName=\"/xl/workbook.xml\" ContentType=\"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet.main+xml\"/>\n <Override PartName=\"/xl/worksheets/sheet1.xml\" ContentType=\"application/vnd.openxmlformats-officedocument.spreadsheetml.worksheet+xml\"/>\n <Override PartName=\"/xl/theme/theme1.xml\" ContentType=\"application/vnd.openxmlformats-officedocument.theme+xml\"/>\n <Override PartName=\"/xl/styles.xml\" ContentType=\"application/vnd.openxmlformats-officedocument.spreadsheetml.styles+xml\"/>\n <Override PartName=\"/docProps/core.xml\" ContentType=\"application/vnd.openxmlformats-package.core-properties+xml\"/>\n <Override PartName=\"/docProps/app.xml\" ContentType=\"application/vnd.openxmlformats-officedocument.extended-properties+xml\"/>\n</Types>PK\u0003\u0004\n\u0000\u0000\u0000\u0000\u0000�\u0000.SJj\u0011�L\u0002\u0000\u0000L\u0002\u0000\u0000\u000b\u0000\u0000\u0000_rels/.rels\n<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n<Relationships xmlns=\"http://schemas.openxmlformats.org/package/2006/relationships\">\n <Relationship Id=\"rId2\" Type=\"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\" Target=\"docProps/core.xml\"/>\n <Relationship Id=\"rId3\" Type=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\" Target=\"docProps/app.xml\"/>\n <Relationship Id=\"rId1\" Type=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\" Target=\"xl/workbook.xml\"/>\n</Relationships>PK\u0003\u0004\n\u0000\u0000\u0000\u0000\u0000�\u0000.S�?d�-\u0002\u0000\u0000-\u0002\u0000\u0000\u001a\u0000\u0000\u0000xl/_rels/workbook.xml.rels\n<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n<Relationships xmlns=\"http://schemas.openxmlformats.org/package/2006/relationships\">\n <Relationship Id=\"rId1\" Type=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships/worksheet\" Target=\"worksheets/sheet1.xml\"/>\n <Relationship Id=\"rId2\" Type=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships/theme\" Target=\"theme/theme1.xml\"/>\n <Relationship Id=\"rId3\" Type=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships/styles\" Target=\"styles.xml\"/>\n</Relationships>PK\u0001\u0002\u0014\u0000\n\u0000\u0000\u0000\u0000\u0000�\u0000.S֒|\u0011Z\u0001\u0000\u0000Z\u0001\u0000\u0000\u0011\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000docProps/core.xmlPK\u0001\u0002\u0014\u0000\n\u0000\u0000\u0000\u0000\u0000�\u0000.S?[\u001ch5\u0002\u0000\u00005\u0002\u0000\u0000\u0010\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000�\u0001\u0000\u0000docProps/app.xmlPK\u0001\u0002\u0014\u0000\n\u0000\u0000\u0000\u0000\u0000�\u0000.S���}E\u0001\u0000\u0000E\u0001\u0000\u0000\u000f\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000�\u0003\u0000\u0000xl/workbook.xmlPK\u0001\u0002\u0014\u0000\n\u0000\u0000\u0000\u0000\u0000�\u0000.S�턫�\n\u0000\u0000�\n\u0000\u0000\u0018\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000^\u0005\u0000\u0000xl/worksheets/sheet1.xmlPK\u0001\u0002\u0014\u0000\n\u0000\u0000\u0000\u0000\u0000�\u0000.S0\u000f�k�\u001d\u0000\u0000�\u001d\u0000\u0000\u0013\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000 \u0010\u0000\u0000xl/theme/theme1.xmlPK\u0001\u0002\u0014\u0000\n\u0000\u0000\u0000\u0000\u0000�\u0000.SU�\u0004�Z\u0004\u0000\u0000Z\u0004\u0000\u0000\r\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000/.\u0000\u0000xl/styles.xmlPK\u0001\u0002\u0014\u0000\n\u0000\u0000\u0000\u0000\u0000�\u0000.S�\u001b0\u0007\u0000\u00000\u0007\u0000\u0000\u0013\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000�2\u0000\u0000[Content_Types].xmlPK\u0001\u0002\u0014\u0000\n\u0000\u0000\u0000\u0000\u0000�\u0000.SJj\u0011�L\u0002\u0000\u0000L\u0002\u0000\u0000\u000b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0015:\u0000\u0000_rels/.relsPK\u0001\u0002\u0014\u0000\n\u0000\u0000\u0000\u0000\u0000�\u0000.S�?d�-\u0002\u0000\u0000-\u0002\u0000\u0000\u001a\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000�<\u0000\u0000xl/_rels/workbook.xml.relsPK\u0005\u0006\u0000\u0000\u0000\u0000\t\u0000\t\u0000>\u0002\u0000\u0000�>\u0000\u0000\u0000\u0000"Responses / Export
Download project responses
Description
Downloads an Excel file containing the responses of a survey.
Body
{
"projectId": string,
"fromDate": string,
"toDate": string,
"filter": array
}
where:
projectId: The id of the project. Required.fromDate: The initial date of the responses data desired. Required.toDate: The final date of the responses data desired. Required.filter: Array of applied filters. Same as the Fetch responses with filter applied request. Optional.
Response
200 OK
Xlsx File.
400 Bad Request
ProjectId, fromDate and/or toDate are missing.
401 Unauthorized
The user doesn’t have permissions.
500 Internal Server Error
Error occurred while processing the request.
POST
/
responses-capture-service
/
v1
/
responses
/
info
/
export
Download project responses
curl --request POST \
--url https://responses.sightx.io/responses-capture-service/v1/responses/info/export \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"projectId": "{{projectId}}",
"fromDate": "2020-01-01",
"toDate": "2022-12-31",
"filter": []
}
'import requests
url = "https://responses.sightx.io/responses-capture-service/v1/responses/info/export"
payload = {
"projectId": "{{projectId}}",
"fromDate": "2020-01-01",
"toDate": "2022-12-31",
"filter": []
}
headers = {
"Authorization": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
projectId: '{{projectId}}',
fromDate: '2020-01-01',
toDate: '2022-12-31',
filter: []
})
};
fetch('https://responses.sightx.io/responses-capture-service/v1/responses/info/export', 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://responses.sightx.io/responses-capture-service/v1/responses/info/export",
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([
'projectId' => '{{projectId}}',
'fromDate' => '2020-01-01',
'toDate' => '2022-12-31',
'filter' => [
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: <api-key>",
"Content-Type: application/json"
],
]);
$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://responses.sightx.io/responses-capture-service/v1/responses/info/export"
payload := strings.NewReader("{\n \"projectId\": \"{{projectId}}\",\n \"fromDate\": \"2020-01-01\",\n \"toDate\": \"2022-12-31\",\n \"filter\": []\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "<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://responses.sightx.io/responses-capture-service/v1/responses/info/export")
.header("Authorization", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"projectId\": \"{{projectId}}\",\n \"fromDate\": \"2020-01-01\",\n \"toDate\": \"2022-12-31\",\n \"filter\": []\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://responses.sightx.io/responses-capture-service/v1/responses/info/export")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"projectId\": \"{{projectId}}\",\n \"fromDate\": \"2020-01-01\",\n \"toDate\": \"2022-12-31\",\n \"filter\": []\n}"
response = http.request(request)
puts response.read_body"PK\u0003\u0004\n\u0000\u0000\u0000\u0000\u0000�\u0000.S֒|\u0011Z\u0001\u0000\u0000Z\u0001\u0000\u0000\u0011\u0000\u0000\u0000docProps/core.xml\n<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n<cp:coreProperties xmlns:cp=\"http://schemas.openxmlformats.org/package/2006/metadata/core-properties\" xmlns:dc=\"http://purl.org/dc/elements/1.1/\" xmlns:dcterms=\"http://purl.org/dc/terms/\" xmlns:dcmitype=\"http://purl.org/dc/dcmitype/\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"/>PK\u0003\u0004\n\u0000\u0000\u0000\u0000\u0000�\u0000.S?[\u001ch5\u0002\u0000\u00005\u0002\u0000\u0000\u0010\u0000\u0000\u0000docProps/app.xml\n<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n<Properties xmlns=\"http://schemas.openxmlformats.org/officeDocument/2006/extended-properties\" xmlns:vt=\"http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes\">\n <Application>SheetJS</Application>\n <HeadingPairs>\n <vt:vector size=\"2\" baseType=\"variant\">\n <vt:variant>\n <vt:lpstr>Worksheets</vt:lpstr>\n </vt:variant>\n <vt:variant>\n <vt:i4>1</vt:i4>\n </vt:variant>\n </vt:vector>\n </HeadingPairs>\n <TitlesOfParts>\n <vt:vector size=\"1\" baseType=\"lpstr\">\n <vt:lpstr>Responses</vt:lpstr>\n </vt:vector>\n </TitlesOfParts>\n</Properties>PK\u0003\u0004\n\u0000\u0000\u0000\u0000\u0000�\u0000.S���}E\u0001\u0000\u0000E\u0001\u0000\u0000\u000f\u0000\u0000\u0000xl/workbook.xml\n<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n<workbook xmlns=\"http://schemas.openxmlformats.org/spreadsheetml/2006/main\" xmlns:r=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\">\n <workbookPr codeName=\"ThisWorkbook\"/>\n <sheets>\n <sheet name=\"Responses\" sheetId=\"1\" r:id=\"rId1\"/>\n </sheets>\n</workbook>PK\u0003\u0004\n\u0000\u0000\u0000\u0000\u0000�\u0000.S�턫�\n\u0000\u0000�\n\u0000\u0000\u0018\u0000\u0000\u0000xl/worksheets/sheet1.xml\n<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n<worksheet xmlns=\"http://schemas.openxmlformats.org/spreadsheetml/2006/main\" xmlns:r=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\">\n <sheetPr codeName=\"Responses\"/>\n <dimension ref=\"A1:G9\"/>\n <sheetViews>\n <sheetView workbookViewId=\"0\"/>\n </sheetViews>\n <sheetData>\n <row r=\"1\">\n <c r=\"A1\" t=\"str\">\n <v>Code</v>\n </c>\n <c r=\"B1\" t=\"str\">\n <v>IP</v>\n </c>\n <c r=\"C1\" t=\"str\">\n <v>Submitted On</v>\n </c>\n <c r=\"D1\" t=\"str\">\n <v>Time to Complete</v>\n </c>\n <c r=\"E1\" t=\"str\">\n <v>Answers</v>\n </c>\n <c r=\"F1\" t=\"str\">\n <v>Country</v>\n </c>\n <c r=\"G1\" t=\"str\">\n <v>City</v>\n </c>\n </row>\n <row r=\"2\">\n <c r=\"A2\" t=\"str\">\n <v>WaUeRW4KAq</v>\n </c>\n <c r=\"B2\" t=\"str\">\n <v>201.183.99.58</v>\n </c>\n <c r=\"C2\" t=\"str\">\n <v>07/01/2021</v>\n </c>\n <c r=\"D2\">\n <v>363</v>\n </c>\n <c r=\"E2\">\n <v>130</v>\n </c>\n <c r=\"F2\" t=\"str\">\n <v>Ecuador</v>\n </c>\n <c r=\"G2\" t=\"str\">\n <v>Guayaquil</v>\n </c>\n </row>\n <row r=\"3\">\n <c r=\"A3\" t=\"str\">\n <v>TUfgli6wwl</v>\n </c>\n <c r=\"B3\" t=\"str\">\n <v>186.101.154.128</v>\n </c>\n <c r=\"C3\" t=\"str\">\n <v>07/01/2021</v>\n </c>\n <c r=\"D3\">\n <v>450</v>\n </c>\n <c r=\"E3\">\n <v>114</v>\n </c>\n <c r=\"F3\" t=\"str\">\n <v>Ecuador</v>\n </c>\n <c r=\"G3\" t=\"str\">\n <v>Latacunga</v>\n </c>\n </row>\n <row r=\"4\">\n <c r=\"A4\" t=\"str\">\n <v>hspJwBQcSC</v>\n </c>\n <c r=\"B4\" t=\"str\">\n <v>186.33.167.248</v>\n </c>\n <c r=\"C4\" t=\"str\">\n <v>07/01/2021</v>\n </c>\n <c r=\"D4\">\n <v>474</v>\n </c>\n <c r=\"E4\">\n <v>98</v>\n </c>\n <c r=\"F4\" t=\"str\">\n <v>Ecuador</v>\n </c>\n <c r=\"G4\" t=\"str\">\n <v>Quito</v>\n </c>\n </row>\n <row r=\"5\">\n <c r=\"A5\" t=\"str\">\n <v>_ELUXWs4uQ</v>\n </c>\n <c r=\"B5\" t=\"str\">\n <v>157.100.173.245</v>\n </c>\n <c r=\"C5\" t=\"str\">\n <v>07/01/2021</v>\n </c>\n <c r=\"D5\">\n <v>788</v>\n </c>\n <c r=\"E5\">\n <v>114</v>\n </c>\n <c r=\"F5\" t=\"str\">\n <v>Ecuador</v>\n </c>\n <c r=\"G5\" t=\"str\">\n <v>Quito</v>\n </c>\n </row>\n <row r=\"6\">\n <c r=\"A6\" t=\"str\">\n <v>bcjqGOr6Fe</v>\n </c>\n <c r=\"B6\" t=\"str\">\n <v>157.100.172.103</v>\n </c>\n <c r=\"C6\" t=\"str\">\n <v>07/01/2021</v>\n </c>\n <c r=\"D6\">\n <v>1033</v>\n </c>\n <c r=\"E6\">\n <v>114</v>\n </c>\n <c r=\"F6\" t=\"str\">\n <v>Ecuador</v>\n </c>\n <c r=\"G6\" t=\"str\">\n <v>Quito</v>\n </c>\n </row>\n <row r=\"7\">\n <c r=\"A7\" t=\"str\">\n <v>TUTPaWA9ux</v>\n </c>\n <c r=\"B7\" t=\"str\">\n <v>138.94.121.153</v>\n </c>\n <c r=\"C7\" t=\"str\">\n <v>07/01/2021</v>\n </c>\n <c r=\"D7\">\n <v>311</v>\n </c>\n <c r=\"E7\">\n <v>82</v>\n </c>\n <c r=\"F7\" t=\"str\">\n <v>Honduras</v>\n </c>\n <c r=\"G7\" t=\"str\">\n <v>Tegucigalpa</v>\n </c>\n </row>\n <row r=\"8\">\n <c r=\"A8\" t=\"str\">\n <v>y2qCwVTvBz</v>\n </c>\n <c r=\"B8\" t=\"str\">\n <v>157.100.172.40</v>\n </c>\n <c r=\"C8\" t=\"str\">\n <v>07/01/2021</v>\n </c>\n <c r=\"D8\">\n <v>708</v>\n </c>\n <c r=\"E8\">\n <v>98</v>\n </c>\n <c r=\"F8\" t=\"str\">\n <v>Ecuador</v>\n </c>\n <c r=\"G8\" t=\"str\">\n <v>Quito</v>\n </c>\n </row>\n <row r=\"9\">\n <c r=\"A9\" t=\"str\">\n <v>N9LFvUkij2</v>\n </c>\n <c r=\"B9\" t=\"str\">\n <v>186.233.184.188</v>\n </c>\n <c r=\"C9\" t=\"str\">\n <v>07/01/2021</v>\n </c>\n <c r=\"D9\">\n <v>474</v>\n </c>\n <c r=\"E9\">\n <v>114</v>\n </c>\n <c r=\"F9\" t=\"str\">\n <v>United States</v>\n </c>\n <c r=\"G9\" t=\"str\">\n <v>Miami</v>\n </c>\n </row>\n </sheetData>\n</worksheet>PK\u0003\u0004\n\u0000\u0000\u0000\u0000\u0000�\u0000.S0\u000f�k�\u001d\u0000\u0000�\u001d\u0000\u0000\u0013\u0000\u0000\u0000xl/theme/theme1.xml\n<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n<a:theme xmlns:a=\"http://schemas.openxmlformats.org/drawingml/2006/main\" name=\"Office Theme\">\n <a:themeElements>\n <a:clrScheme name=\"Office\">\n <a:dk1>\n <a:sysClr val=\"windowText\" lastClr=\"000000\"/>\n </a:dk1>\n <a:lt1>\n <a:sysClr val=\"window\" lastClr=\"FFFFFF\"/>\n </a:lt1>\n <a:dk2>\n <a:srgbClr val=\"1F497D\"/>\n </a:dk2>\n <a:lt2>\n <a:srgbClr val=\"EEECE1\"/>\n </a:lt2>\n <a:accent1>\n <a:srgbClr val=\"4F81BD\"/>\n </a:accent1>\n <a:accent2>\n <a:srgbClr val=\"C0504D\"/>\n </a:accent2>\n <a:accent3>\n <a:srgbClr val=\"9BBB59\"/>\n </a:accent3>\n <a:accent4>\n <a:srgbClr val=\"8064A2\"/>\n </a:accent4>\n <a:accent5>\n <a:srgbClr val=\"4BACC6\"/>\n </a:accent5>\n <a:accent6>\n <a:srgbClr val=\"F79646\"/>\n </a:accent6>\n <a:hlink>\n <a:srgbClr val=\"0000FF\"/>\n </a:hlink>\n <a:folHlink>\n <a:srgbClr val=\"800080\"/>\n </a:folHlink>\n </a:clrScheme>\n <a:fontScheme name=\"Office\">\n <a:majorFont>\n <a:latin typeface=\"Cambria\"/>\n <a:ea typeface=\"\"/>\n <a:cs typeface=\"\"/>\n <a:font script=\"Jpan\" typeface=\"MS Pゴシック\"/>\n <a:font script=\"Hang\" typeface=\"맑은 고딕\"/>\n <a:font script=\"Hans\" typeface=\"宋体\"/>\n <a:font script=\"Hant\" typeface=\"新細明體\"/>\n <a:font script=\"Arab\" typeface=\"Times New Roman\"/>\n <a:font script=\"Hebr\" typeface=\"Times New Roman\"/>\n <a:font script=\"Thai\" typeface=\"Tahoma\"/>\n <a:font script=\"Ethi\" typeface=\"Nyala\"/>\n <a:font script=\"Beng\" typeface=\"Vrinda\"/>\n <a:font script=\"Gujr\" typeface=\"Shruti\"/>\n <a:font script=\"Khmr\" typeface=\"MoolBoran\"/>\n <a:font script=\"Knda\" typeface=\"Tunga\"/>\n <a:font script=\"Guru\" typeface=\"Raavi\"/>\n <a:font script=\"Cans\" typeface=\"Euphemia\"/>\n <a:font script=\"Cher\" typeface=\"Plantagenet Cherokee\"/>\n <a:font script=\"Yiii\" typeface=\"Microsoft Yi Baiti\"/>\n <a:font script=\"Tibt\" typeface=\"Microsoft Himalaya\"/>\n <a:font script=\"Thaa\" typeface=\"MV Boli\"/>\n <a:font script=\"Deva\" typeface=\"Mangal\"/>\n <a:font script=\"Telu\" typeface=\"Gautami\"/>\n <a:font script=\"Taml\" typeface=\"Latha\"/>\n <a:font script=\"Syrc\" typeface=\"Estrangelo Edessa\"/>\n <a:font script=\"Orya\" typeface=\"Kalinga\"/>\n <a:font script=\"Mlym\" typeface=\"Kartika\"/>\n <a:font script=\"Laoo\" typeface=\"DokChampa\"/>\n <a:font script=\"Sinh\" typeface=\"Iskoola Pota\"/>\n <a:font script=\"Mong\" typeface=\"Mongolian Baiti\"/>\n <a:font script=\"Viet\" typeface=\"Times New Roman\"/>\n <a:font script=\"Uigh\" typeface=\"Microsoft Uighur\"/>\n <a:font script=\"Geor\" typeface=\"Sylfaen\"/>\n </a:majorFont>\n <a:minorFont>\n <a:latin typeface=\"Calibri\"/>\n <a:ea typeface=\"\"/>\n <a:cs typeface=\"\"/>\n <a:font script=\"Jpan\" typeface=\"MS Pゴシック\"/>\n <a:font script=\"Hang\" typeface=\"맑은 고딕\"/>\n <a:font script=\"Hans\" typeface=\"宋体\"/>\n <a:font script=\"Hant\" typeface=\"新細明體\"/>\n <a:font script=\"Arab\" typeface=\"Arial\"/>\n <a:font script=\"Hebr\" typeface=\"Arial\"/>\n <a:font script=\"Thai\" typeface=\"Tahoma\"/>\n <a:font script=\"Ethi\" typeface=\"Nyala\"/>\n <a:font script=\"Beng\" typeface=\"Vrinda\"/>\n <a:font script=\"Gujr\" typeface=\"Shruti\"/>\n <a:font script=\"Khmr\" typeface=\"DaunPenh\"/>\n <a:font script=\"Knda\" typeface=\"Tunga\"/>\n <a:font script=\"Guru\" typeface=\"Raavi\"/>\n <a:font script=\"Cans\" typeface=\"Euphemia\"/>\n <a:font script=\"Cher\" typeface=\"Plantagenet Cherokee\"/>\n <a:font script=\"Yiii\" typeface=\"Microsoft Yi Baiti\"/>\n <a:font script=\"Tibt\" typeface=\"Microsoft Himalaya\"/>\n <a:font script=\"Thaa\" typeface=\"MV Boli\"/>\n <a:font script=\"Deva\" typeface=\"Mangal\"/>\n <a:font script=\"Telu\" typeface=\"Gautami\"/>\n <a:font script=\"Taml\" typeface=\"Latha\"/>\n <a:font script=\"Syrc\" typeface=\"Estrangelo Edessa\"/>\n <a:font script=\"Orya\" typeface=\"Kalinga\"/>\n <a:font script=\"Mlym\" typeface=\"Kartika\"/>\n <a:font script=\"Laoo\" typeface=\"DokChampa\"/>\n <a:font script=\"Sinh\" typeface=\"Iskoola Pota\"/>\n <a:font script=\"Mong\" typeface=\"Mongolian Baiti\"/>\n <a:font script=\"Viet\" typeface=\"Arial\"/>\n <a:font script=\"Uigh\" typeface=\"Microsoft Uighur\"/>\n <a:font script=\"Geor\" typeface=\"Sylfaen\"/>\n </a:minorFont>\n </a:fontScheme>\n <a:fmtScheme name=\"Office\">\n <a:fillStyleLst>\n <a:solidFill>\n <a:schemeClr val=\"phClr\"/>\n </a:solidFill>\n <a:gradFill rotWithShape=\"1\">\n <a:gsLst>\n <a:gs pos=\"0\">\n <a:schemeClr val=\"phClr\">\n <a:tint val=\"50000\"/>\n <a:satMod val=\"300000\"/>\n </a:schemeClr>\n </a:gs>\n <a:gs pos=\"35000\">\n <a:schemeClr val=\"phClr\">\n <a:tint val=\"37000\"/>\n <a:satMod val=\"300000\"/>\n </a:schemeClr>\n </a:gs>\n <a:gs pos=\"100000\">\n <a:schemeClr val=\"phClr\">\n <a:tint val=\"15000\"/>\n <a:satMod val=\"350000\"/>\n </a:schemeClr>\n </a:gs>\n </a:gsLst>\n <a:lin ang=\"16200000\" scaled=\"1\"/>\n </a:gradFill>\n <a:gradFill rotWithShape=\"1\">\n <a:gsLst>\n <a:gs pos=\"0\">\n <a:schemeClr val=\"phClr\">\n <a:tint val=\"100000\"/>\n <a:shade val=\"100000\"/>\n <a:satMod val=\"130000\"/>\n </a:schemeClr>\n </a:gs>\n <a:gs pos=\"100000\">\n <a:schemeClr val=\"phClr\">\n <a:tint val=\"50000\"/>\n <a:shade val=\"100000\"/>\n <a:satMod val=\"350000\"/>\n </a:schemeClr>\n </a:gs>\n </a:gsLst>\n <a:lin ang=\"16200000\" scaled=\"0\"/>\n </a:gradFill>\n </a:fillStyleLst>\n <a:lnStyleLst>\n <a:ln w=\"9525\" cap=\"flat\" cmpd=\"sng\" algn=\"ctr\">\n <a:solidFill>\n <a:schemeClr val=\"phClr\">\n <a:shade val=\"95000\"/>\n <a:satMod val=\"105000\"/>\n </a:schemeClr>\n </a:solidFill>\n <a:prstDash val=\"solid\"/>\n </a:ln>\n <a:ln w=\"25400\" cap=\"flat\" cmpd=\"sng\" algn=\"ctr\">\n <a:solidFill>\n <a:schemeClr val=\"phClr\"/>\n </a:solidFill>\n <a:prstDash val=\"solid\"/>\n </a:ln>\n <a:ln w=\"38100\" cap=\"flat\" cmpd=\"sng\" algn=\"ctr\">\n <a:solidFill>\n <a:schemeClr val=\"phClr\"/>\n </a:solidFill>\n <a:prstDash val=\"solid\"/>\n </a:ln>\n </a:lnStyleLst>\n <a:effectStyleLst>\n <a:effectStyle>\n <a:effectLst>\n <a:outerShdw blurRad=\"40000\" dist=\"20000\" dir=\"5400000\" rotWithShape=\"0\">\n <a:srgbClr val=\"000000\">\n <a:alpha val=\"38000\"/>\n </a:srgbClr>\n </a:outerShdw>\n </a:effectLst>\n </a:effectStyle>\n <a:effectStyle>\n <a:effectLst>\n <a:outerShdw blurRad=\"40000\" dist=\"23000\" dir=\"5400000\" rotWithShape=\"0\">\n <a:srgbClr val=\"000000\">\n <a:alpha val=\"35000\"/>\n </a:srgbClr>\n </a:outerShdw>\n </a:effectLst>\n </a:effectStyle>\n <a:effectStyle>\n <a:effectLst>\n <a:outerShdw blurRad=\"40000\" dist=\"23000\" dir=\"5400000\" rotWithShape=\"0\">\n <a:srgbClr val=\"000000\">\n <a:alpha val=\"35000\"/>\n </a:srgbClr>\n </a:outerShdw>\n </a:effectLst>\n <a:scene3d>\n <a:camera prst=\"orthographicFront\">\n <a:rot lat=\"0\" lon=\"0\" rev=\"0\"/>\n </a:camera>\n <a:lightRig rig=\"threePt\" dir=\"t\">\n <a:rot lat=\"0\" lon=\"0\" rev=\"1200000\"/>\n </a:lightRig>\n </a:scene3d>\n <a:sp3d>\n <a:bevelT w=\"63500\" h=\"25400\"/>\n </a:sp3d>\n </a:effectStyle>\n </a:effectStyleLst>\n <a:bgFillStyleLst>\n <a:solidFill>\n <a:schemeClr val=\"phClr\"/>\n </a:solidFill>\n <a:gradFill rotWithShape=\"1\">\n <a:gsLst>\n <a:gs pos=\"0\">\n <a:schemeClr val=\"phClr\">\n <a:tint val=\"40000\"/>\n <a:satMod val=\"350000\"/>\n </a:schemeClr>\n </a:gs>\n <a:gs pos=\"40000\">\n <a:schemeClr val=\"phClr\">\n <a:tint val=\"45000\"/>\n <a:shade val=\"99000\"/>\n <a:satMod val=\"350000\"/>\n </a:schemeClr>\n </a:gs>\n <a:gs pos=\"100000\">\n <a:schemeClr val=\"phClr\">\n <a:shade val=\"20000\"/>\n <a:satMod val=\"255000\"/>\n </a:schemeClr>\n </a:gs>\n </a:gsLst>\n <a:path path=\"circle\">\n <a:fillToRect l=\"50000\" t=\"-80000\" r=\"50000\" b=\"180000\"/>\n </a:path>\n </a:gradFill>\n <a:gradFill rotWithShape=\"1\">\n <a:gsLst>\n <a:gs pos=\"0\">\n <a:schemeClr val=\"phClr\">\n <a:tint val=\"80000\"/>\n <a:satMod val=\"300000\"/>\n </a:schemeClr>\n </a:gs>\n <a:gs pos=\"100000\">\n <a:schemeClr val=\"phClr\">\n <a:shade val=\"30000\"/>\n <a:satMod val=\"200000\"/>\n </a:schemeClr>\n </a:gs>\n </a:gsLst>\n <a:path path=\"circle\">\n <a:fillToRect l=\"50000\" t=\"50000\" r=\"50000\" b=\"50000\"/>\n </a:path>\n </a:gradFill>\n </a:bgFillStyleLst>\n </a:fmtScheme>\n </a:themeElements>\n <a:objectDefaults>\n <a:spDef>\n <a:spPr/>\n <a:bodyPr/>\n <a:lstStyle/>\n <a:style>\n <a:lnRef idx=\"1\">\n <a:schemeClr val=\"accent1\"/>\n </a:lnRef>\n <a:fillRef idx=\"3\">\n <a:schemeClr val=\"accent1\"/>\n </a:fillRef>\n <a:effectRef idx=\"2\">\n <a:schemeClr val=\"accent1\"/>\n </a:effectRef>\n <a:fontRef idx=\"minor\">\n <a:schemeClr val=\"lt1\"/>\n </a:fontRef>\n </a:style>\n </a:spDef>\n <a:lnDef>\n <a:spPr/>\n <a:bodyPr/>\n <a:lstStyle/>\n <a:style>\n <a:lnRef idx=\"2\">\n <a:schemeClr val=\"accent1\"/>\n </a:lnRef>\n <a:fillRef idx=\"0\">\n <a:schemeClr val=\"accent1\"/>\n </a:fillRef>\n <a:effectRef idx=\"1\">\n <a:schemeClr val=\"accent1\"/>\n </a:effectRef>\n <a:fontRef idx=\"minor\">\n <a:schemeClr val=\"tx1\"/>\n </a:fontRef>\n </a:style>\n </a:lnDef>\n </a:objectDefaults>\n <a:extraClrSchemeLst/>\n</a:theme>PK\u0003\u0004\n\u0000\u0000\u0000\u0000\u0000�\u0000.SU�\u0004�Z\u0004\u0000\u0000Z\u0004\u0000\u0000\r\u0000\u0000\u0000xl/styles.xml\n<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n<styleSheet xmlns=\"http://schemas.openxmlformats.org/spreadsheetml/2006/main\" xmlns:vt=\"http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes\">\n <numFmts count=\"1\">\n <numFmt numFmtId=\"56\" formatCode=\""上午/下午 "hh"時"mm"分"ss"秒 "\"/>\n </numFmts>\n <fonts count=\"1\">\n <font>\n <sz val=\"12\"/>\n <color theme=\"1\"/>\n <name val=\"Calibri\"/>\n <family val=\"2\"/>\n <scheme val=\"minor\"/>\n </font>\n </fonts>\n <fills count=\"2\">\n <fill>\n <patternFill patternType=\"none\"/>\n </fill>\n <fill>\n <patternFill patternType=\"gray125\"/>\n </fill>\n </fills>\n <borders count=\"1\">\n <border>\n <left/>\n <right/>\n <top/>\n <bottom/>\n <diagonal/>\n </border>\n </borders>\n <cellStyleXfs count=\"1\">\n <xf numFmtId=\"0\" fontId=\"0\" fillId=\"0\" borderId=\"0\"/>\n </cellStyleXfs>\n <cellXfs count=\"1\">\n <xf numFmtId=\"0\" fontId=\"0\" fillId=\"0\" borderId=\"0\" xfId=\"0\" applyNumberFormat=\"1\"/>\n </cellXfs>\n <cellStyles count=\"1\">\n <cellStyle name=\"Normal\" xfId=\"0\" builtinId=\"0\"/>\n </cellStyles>\n <dxfs count=\"0\"/>\n <tableStyles count=\"0\" defaultTableStyle=\"TableStyleMedium9\" defaultPivotStyle=\"PivotStyleMedium4\"/>\n</styleSheet>PK\u0003\u0004\n\u0000\u0000\u0000\u0000\u0000�\u0000.S�\u001b0\u0007\u0000\u00000\u0007\u0000\u0000\u0013\u0000\u0000\u0000[Content_Types].xml\n<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n<Types xmlns=\"http://schemas.openxmlformats.org/package/2006/content-types\" xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\">\n <Default Extension=\"xml\" ContentType=\"application/xml\"/>\n <Default Extension=\"bin\" ContentType=\"application/vnd.ms-excel.sheet.binary.macroEnabled.main\"/>\n <Default Extension=\"vml\" ContentType=\"application/vnd.openxmlformats-officedocument.vmlDrawing\"/>\n <Default Extension=\"bmp\" ContentType=\"image/bmp\"/>\n <Default Extension=\"png\" ContentType=\"image/png\"/>\n <Default Extension=\"gif\" ContentType=\"image/gif\"/>\n <Default Extension=\"emf\" ContentType=\"image/x-emf\"/>\n <Default Extension=\"wmf\" ContentType=\"image/x-wmf\"/>\n <Default Extension=\"jpg\" ContentType=\"image/jpeg\"/>\n <Default Extension=\"jpeg\" ContentType=\"image/jpeg\"/>\n <Default Extension=\"tif\" ContentType=\"image/tiff\"/>\n <Default Extension=\"tiff\" ContentType=\"image/tiff\"/>\n <Default Extension=\"pdf\" ContentType=\"application/pdf\"/>\n <Default Extension=\"rels\" ContentType=\"application/vnd.openxmlformats-package.relationships+xml\"/>\n <Override PartName=\"/xl/workbook.xml\" ContentType=\"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet.main+xml\"/>\n <Override PartName=\"/xl/worksheets/sheet1.xml\" ContentType=\"application/vnd.openxmlformats-officedocument.spreadsheetml.worksheet+xml\"/>\n <Override PartName=\"/xl/theme/theme1.xml\" ContentType=\"application/vnd.openxmlformats-officedocument.theme+xml\"/>\n <Override PartName=\"/xl/styles.xml\" ContentType=\"application/vnd.openxmlformats-officedocument.spreadsheetml.styles+xml\"/>\n <Override PartName=\"/docProps/core.xml\" ContentType=\"application/vnd.openxmlformats-package.core-properties+xml\"/>\n <Override PartName=\"/docProps/app.xml\" ContentType=\"application/vnd.openxmlformats-officedocument.extended-properties+xml\"/>\n</Types>PK\u0003\u0004\n\u0000\u0000\u0000\u0000\u0000�\u0000.SJj\u0011�L\u0002\u0000\u0000L\u0002\u0000\u0000\u000b\u0000\u0000\u0000_rels/.rels\n<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n<Relationships xmlns=\"http://schemas.openxmlformats.org/package/2006/relationships\">\n <Relationship Id=\"rId2\" Type=\"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\" Target=\"docProps/core.xml\"/>\n <Relationship Id=\"rId3\" Type=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\" Target=\"docProps/app.xml\"/>\n <Relationship Id=\"rId1\" Type=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\" Target=\"xl/workbook.xml\"/>\n</Relationships>PK\u0003\u0004\n\u0000\u0000\u0000\u0000\u0000�\u0000.S�?d�-\u0002\u0000\u0000-\u0002\u0000\u0000\u001a\u0000\u0000\u0000xl/_rels/workbook.xml.rels\n<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n<Relationships xmlns=\"http://schemas.openxmlformats.org/package/2006/relationships\">\n <Relationship Id=\"rId1\" Type=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships/worksheet\" Target=\"worksheets/sheet1.xml\"/>\n <Relationship Id=\"rId2\" Type=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships/theme\" Target=\"theme/theme1.xml\"/>\n <Relationship Id=\"rId3\" Type=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships/styles\" Target=\"styles.xml\"/>\n</Relationships>PK\u0001\u0002\u0014\u0000\n\u0000\u0000\u0000\u0000\u0000�\u0000.S֒|\u0011Z\u0001\u0000\u0000Z\u0001\u0000\u0000\u0011\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000docProps/core.xmlPK\u0001\u0002\u0014\u0000\n\u0000\u0000\u0000\u0000\u0000�\u0000.S?[\u001ch5\u0002\u0000\u00005\u0002\u0000\u0000\u0010\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000�\u0001\u0000\u0000docProps/app.xmlPK\u0001\u0002\u0014\u0000\n\u0000\u0000\u0000\u0000\u0000�\u0000.S���}E\u0001\u0000\u0000E\u0001\u0000\u0000\u000f\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000�\u0003\u0000\u0000xl/workbook.xmlPK\u0001\u0002\u0014\u0000\n\u0000\u0000\u0000\u0000\u0000�\u0000.S�턫�\n\u0000\u0000�\n\u0000\u0000\u0018\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000^\u0005\u0000\u0000xl/worksheets/sheet1.xmlPK\u0001\u0002\u0014\u0000\n\u0000\u0000\u0000\u0000\u0000�\u0000.S0\u000f�k�\u001d\u0000\u0000�\u001d\u0000\u0000\u0013\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000 \u0010\u0000\u0000xl/theme/theme1.xmlPK\u0001\u0002\u0014\u0000\n\u0000\u0000\u0000\u0000\u0000�\u0000.SU�\u0004�Z\u0004\u0000\u0000Z\u0004\u0000\u0000\r\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000/.\u0000\u0000xl/styles.xmlPK\u0001\u0002\u0014\u0000\n\u0000\u0000\u0000\u0000\u0000�\u0000.S�\u001b0\u0007\u0000\u00000\u0007\u0000\u0000\u0013\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000�2\u0000\u0000[Content_Types].xmlPK\u0001\u0002\u0014\u0000\n\u0000\u0000\u0000\u0000\u0000�\u0000.SJj\u0011�L\u0002\u0000\u0000L\u0002\u0000\u0000\u000b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0015:\u0000\u0000_rels/.relsPK\u0001\u0002\u0014\u0000\n\u0000\u0000\u0000\u0000\u0000�\u0000.S�?d�-\u0002\u0000\u0000-\u0002\u0000\u0000\u001a\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000�<\u0000\u0000xl/_rels/workbook.xml.relsPK\u0005\u0006\u0000\u0000\u0000\u0000\t\u0000\t\u0000>\u0002\u0000\u0000�>\u0000\u0000\u0000\u0000"Description
Downloads an Excel file containing the responses of a survey.Body
{
"projectId": string,
"fromDate": string,
"toDate": string,
"filter": array
}
projectId: The id of the project. Required.fromDate: The initial date of the responses data desired. Required.toDate: The final date of the responses data desired. Required.filter: Array of applied filters. Same as the Fetch responses with filter applied request. Optional.
Response
200 OK
Xlsx File.
400 Bad Request
ProjectId, fromDate and/or toDate are missing.
401 Unauthorized
The user doesn’t have permissions.
500 Internal Server Error
Error occurred while processing the request.
Was this page helpful?
⌘I