Get single web push campaign
Return information about one of your web push campaigns.
GET
/webpush-campaign/
curl -X GET -H "Authorization: Token <your_64_char_api_key>" "https://<your_app_subdomain>.user.com/api/public/webpush-campaign/:id/"
Response
{
"id": 1,
"description": "Description of the web push campaign.",
"type": 2,
"eta": null,
"name": "Web Push Campaign 1",
"status": 2,
"messages": [
{
"id": 1,
"name": "Web push title",
"message_id": 1,
"message_title": "Web push title",
"message_body": "Message body",
"message_badge": null,
"message_icon": null,
"message_url": "https://< path to your website >",
"message_require_interaction": true,
"message_doughnut_title": "",
"message_doughnut_url": "",
"message_actions": false,
"message_coffee_title": "",
"message_coffee_url": ""
}
],
"recipients": null,
"recipients_count": 0,
"created_at": "2021-03-25T16:01:09.687017Z",
"updated_at": "2021-03-25T16:01:15.161743Z",
"category": null,
"ttl": 259200,
"user_activity_schedule": false,
"advance_filtering": null,
"multiple_domains_warning": false
}
var settings = {
"async": true,
"crossDomain": true,
"url": "https://<your_app_subdomain>.user.com/api/public/webpush-campaign/",
"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/webpush-campaign/");
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/webpush-campaign/',
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/webpush-campaign/",
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/webpush-campaign/"
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/webpush-campaign/"
headers = {'authorization': 'Token <your_64_char_api_key>'}
response = requests.get(url, headers=headers)
print(response.text)