List Zones

Retrieves all zones

Recent Requests
Log in to see full request history
TimeStatusUser Agent
Retrieving recent requests…
LoadingLoading…

PHP

Replace [YOUR_API_TOKEN] with your token

<?php
	$curl = curl_init('https://<<domain>>/v1/publisher/zones/?token=[YOUR_API_TOKEN]');
	curl_setopt($tcurl, CURLOPT_RETURNTRANSFER, true);
	$response = curl_exec($curl);
	curl_close($curl);
	var_dump($response);
?>
Language
LoadingLoading…