I'm trying to get data from a system through its own API. It's this one: https://www.zoho.com/recruit/get-records.html
So I'm really new to PHP, and all I can find is examples where they grab the variable name from the URL via the get method. Or with this API in particular, inserting data.
I'm trying to put the data from the request into an array, but all I get from the print is Array(). Am I going about this totally wrong? The API explains it really awfully, I think... and there's no example anywhere.
$url = "https://recruit.zoho.com/ats/private/xml/JobOpenings/getRecords?apikey=$api_key&ticket=$ticket_id";
$request = new WP_Http;
$result = $request->request($url, $data = array());
print_r($data);
$result
instead of$data
? – user3849602