PHP
$data = array (
'bottom_left_latitude' => 'numeric',
'bottom_left_longitude' => 'numeric',
'top_right_latitude' => 'numeric',
'top_right_longitude' => 'numeric',
'zoom' => 0,
);
$context = stream_context_create([
'ssl'=>['verify_peer' => false],
'http' => [
'method' => 'GET',
'header' => "Content-Type: application/json\r
Accept: application/json",
'content'=>json_encode($data)
]
]);
$result = file_get_contents('https://your-domain/api/admin/v1/map/cameras/', false, $context);