The fetchCompileCampaignRecipientResultsBackgroundResult() method returns the results of compileCampaignRecipientResultsBackground() method call that has since completed. If a fault occurred during the asynchronous execution of the compileCampaignRecipientResultsBackground() method, that fault will be returned to the caller of fetchCompileCampaignRecipientResultsBackgroundResult(). Otherwise, the return value of this method will be structured the same as the value returned by a successful call to the compileCampaignRecipientResults() method.
If the method has not yet completed, a fault will be thrown. The status a compileCampaignRecipientResultsBackground() call can be checked using the getBackgroundTaskStatus() method.
If the method has not yet completed, a fault will be thrown. The status a compileCampaignRecipientResultsBackground() call can be checked using the getBackgroundTaskStatus() method.
Input
[vrtypens:fetchBackgroundResultArgs]
session_id [xsd:string] (required)
Your API session id.
background_task_id [xsd:int]
Examples
Perl
$vr->fetchCompileCampaignRecipientResultsBackgroundResult({
session_id => $sid,
background_task_id => $btid,
});
PHP
$vr->fetchCompileCampaignRecipientResultsBackgroundResult( array(
'session_id' => $sid,
'background_task_id' => $btid,
) );
Ruby
vr.fetchCompileCampaignRecipientResultsBackgroundResult({
session_id => sid,
background_task_id => btid,
});
