CloudConvert\Api::put PHP Method

put() public method

Wrap call to CloudConvert APIs for PUT requests
public put ( string $path, string $content, boolean $is_authenticated = true )
$path string path ask inside api
$content string content to send inside body of request
$is_authenticated boolean if the request use authentication
    public function put($path, $content, $is_authenticated = true)
    {
        return $this->rawCall("PUT", $path, $content, $is_authenticated);
    }