Update Ranking Parameter In a Topic
Category: Graphs
/api/updateRankingParameter/{apiKey}/{instanceId}/{graphId}/{rankingId}
curl https://truthsift.com/api/updateRankingParameter/54-c874ab70/1/29/691 -d "name=From API test 222" -H "Content-Type: application/x-www-form-urlencoded" -X POST
error_reporting(E_ALL ^ E_WARNING ^ E_NOTICE ^ E_DEPRECATED);
$post ="name=From API test 222";
$curl = curl_init();
$url = "https://truthsift.com/api/updateRankingParameter/54-c874ab70/1/29/691";
curl_setopt($curl, CURLOPT_URL, $url);
curl_setopt($curl, CURLOPT_POSTFIELDS, $post);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($curl);
curl_close($curl);
var_dump($response);