CloudConvert\Api::get PHP Метод

get() публичный Метод

Wrap call to CloudConvert APIs for GET requests
public get ( string $path, string $content = null, 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 get($path, $content = null, $is_authenticated = true)
    {
        return $this->rawCall("GET", $path, $content, $is_authenticated);
    }