Get all pop-ups
Return information about all of your pop-ups.
GET
/form/
curl -X GET -H "Authorization: Token <your_64_char_api_key>" "https://<your_app_subdomain>.user.com/api/public/form/"
Response
{
"count": 2,
"next": null,
"previous": null,
"results": [
{
"key": "a2c9111a-bbbb-cccc-1234-abcde1231234", // Useful for accessing single form
"statistics": {
"id": 2,
"shown_counter": 200,
"submit_counter": 50,
"ctr": "25.00",
"form": "aaaaaaaa-bbbb-cccc-1234-abcdef98754"
},
"name": "Pop-up 1",
"description": "Description of the second pop-up",
"created_at": "2020-03-03T16:00:00.000000Z",
"updated_at": "2020-03-03T16:00:00.000000Z",
"content": "Content of the pop-up",
"preview": null,
"predefined_template_json": null,
"preview_file": null,
"author": 13
},
{
"key": "d3fa232c-bbbb-cccc-1234-abcde1231234",
"statistics": {
"id": 1,
"shown_counter": 100,
"submit_counter": 50,
"ctr": "50.00",
"form": "ababacac-bbbb-cccc-1234-abcdef98754"
},
"name": "Pop-up 0",
"description": "Description of the first pop-up",
"created_at": "2020-03-03T14:30:00.000000Z",
"updated_at": "2020-03-03T15:00:00.000000Z",
"content": "Content0",
"preview": null,
"predefined_template_json": null,
"preview_file": null,
"author": 12
}
]
}
var settings = {
"async": true,
"crossDomain": true,
"url": "https://<your_app_subdomain>.user.com/api/public/form/",
"method": "GET",
"headers": {
"authorization": "Token <your_64_char_api_key>"
}
}
$.ajax(settings).done(function (response) {
console.log(response);
});
var data = null;
var xhr = new XMLHttpRequest();
xhr.withCredentials = true;
xhr.addEventListener("readystatechange", function () {
if (this.readyState === 4) {
console.log(this.responseText);
}
});
xhr.open("GET", "https://<your_app_subdomain>.user.com/api/public/form/");
xhr.setRequestHeader("authorization", "Token <your_64_char_api_key>");
xhr.send(data);
var request = require("request");
var options = { method: 'GET',
url: 'https://<your_app_subdomain>.user.com/api/public/form/',
headers: { authorization: 'Token <your_64_char_api_key>' } };
request(options, function (error, response, body) {
if (error) throw new Error(error);
console.log(body);
});
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => "https://<your_app_subdomain>.user.com/api/public/form/",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_POSTFIELDS => "",
CURLOPT_HTTPHEADER => array(
"authorization: Token <your_64_char_api_key>"
),
));
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
import requests
url = "https://<your_app_subdomain>.user.com/api/public/form/"
headers = {'authorization': 'Token <your_64_char_api_key>'}
response = requests.request("GET", url, headers=headers)
print(response.text)
import requests
url = "https://<your_app_subdomain>.user.com/api/public/form/"
headers = {'authorization': 'Token <your_64_char_api_key>'}
response = requests.get(url, headers=headers)
print(response.text)