CloudConvert\Api::post PHP Method

post() public method

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