List Zone

Retrieve a specific zone

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

This is where you show your users how to set it up. You can use code samples, like this:

PHP

Replace [YOUR_ZONE_ID] with the zone ID and [YOUR_API_TOKEN] with your token

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