get https://app.campaignrefinery.com/rest/forms/get-form
Log in to see full request history
Responses
xxxxxxxxxx
24<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => "https://app.campaignrefinery.com/rest/forms/get-form?key=$key&name=$name",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
));
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
Try It!
to start a request and see the response here! Or choose an example: