Change Owner of a graph which you own. The new owner will have all access rights to the graph. You will continue to remain a Shared member for the graph.
Parameter | Type | Mandatory |
apiKey | string | yes |
instanceId | int | yes |
graphId | int | yes |
newOwnerId | int | yes |
error_reporting(E_ALL ^ E_WARNING ^ E_NOTICE ^ E_DEPRECATED); $curl = curl_init(); $url = "https://truthsift.com/api/changeOwnerOfGraph/54-c874ab70/1/97/54 "; curl_setopt($curl, CURLOPT_URL, $url); curl_setopt($curl, CURLOPT_RETURNTRANSFER, true); $response = curl_exec($curl); curl_close($curl); var_dump($response);