Export submissions as CSV
curl --request GET \
--url https://api.paubox.com/v1/forms/api/forms/{form_id}/submissions/submission-csv \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.paubox.com/v1/forms/api/forms/{form_id}/submissions/submission-csv"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.paubox.com/v1/forms/api/forms/{form_id}/submissions/submission-csv', 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.paubox.com/v1/forms/api/forms/{form_id}/submissions/submission-csv",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$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.paubox.com/v1/forms/api/forms/{form_id}/submissions/submission-csv"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.paubox.com/v1/forms/api/forms/{form_id}/submissions/submission-csv")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.paubox.com/v1/forms/api/forms/{form_id}/submissions/submission-csv")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body"Created At,First name,Last name,Email\n2024-06-05 02:22:00 PM,Jane,Smith,jane@example.com\n2024-06-04 09:10:00 AM,John,Doe,john@example.com\n"Forms API
Export submissions as CSV
Exports all submissions of a form as a CSV attachment (filename form_data.csv). The first column is “Created At”, followed by one column per form field, using the field labels from the form definition.
GET
/
api
/
forms
/
{form_id}
/
submissions
/
submission-csv
Export submissions as CSV
curl --request GET \
--url https://api.paubox.com/v1/forms/api/forms/{form_id}/submissions/submission-csv \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.paubox.com/v1/forms/api/forms/{form_id}/submissions/submission-csv"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.paubox.com/v1/forms/api/forms/{form_id}/submissions/submission-csv', 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.paubox.com/v1/forms/api/forms/{form_id}/submissions/submission-csv",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$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.paubox.com/v1/forms/api/forms/{form_id}/submissions/submission-csv"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.paubox.com/v1/forms/api/forms/{form_id}/submissions/submission-csv")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.paubox.com/v1/forms/api/forms/{form_id}/submissions/submission-csv")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body"Created At,First name,Last name,Email\n2024-06-05 02:22:00 PM,Jane,Smith,jane@example.com\n2024-06-04 09:10:00 AM,John,Doe,john@example.com\n"Authorizations
Paubox API key sent as Authorization: Bearer YOUR_API_KEY. API keys are created in the Paubox dashboard and must have the "forms" scope; a key without the forms scope receives 401 Unauthorized. A valid key used against a resource that belongs to a different customer receives 403 Forbidden.
Path Parameters
UUID of the form
Response
CSV file with all submissions
The response is of type string.
⌘I