Api\ServiceType\ApiService::Saint_ImportCommitJob PHP Method

Saint_ImportCommitJob() public method

Method to call the operation originally named Saint.ImportCommitJob Meta informations extracted from the WSDL - documentation: Commits a specified Saint Import job for processing.
public Saint_ImportCommitJob ( string $job_id ) : string | boolean
$job_id string
return string | boolean
    public function Saint_ImportCommitJob($job_id)
    {
        try {
            $this->setResult(self::getSoapClient()->__call('Saint.ImportCommitJob', array($job_id)));
            return $this->getResult();
        } catch (\SoapFault $soapFault) {
            $this->saveLastError(__METHOD__, $soapFault);
            return false;
        }
    }
ApiService