Replicate a workspace which you own. It will also replicate the graphs within the workspace which belong to you.
See the API call for replicateGraph to
get details of graph replication. Shared Users for the workspace are not replicated.
Parameter | Type | Mandatory |
apiKey | string | yes |
instanceId | int | yes |
workspaceId | int | yes |
error_reporting(E_ALL ^ E_WARNING ^ E_NOTICE ^ E_DEPRECATED); $curl = curl_init(); $url = "https://truthsift.com/api/replicateWorkspace/54-c874ab70/1/32"; curl_setopt($curl, CURLOPT_URL, $url); curl_setopt($curl, CURLOPT_RETURNTRANSFER, true); $response = curl_exec($curl); curl_close($curl); var_dump($response);