Need An Email Marketing Solution For All Of Your Customers?

Partner With VerticalResponse!

fetchAppendFileToListBackgroundResult


The fetchAppendFileToListBackgroundResult() method returns the results of appendFileToListBackground() method call that has since completed. If a fault occurred during the asynchronous execution of the appendFileToListBackground() method, that fault will be returned to the caller of fetchAppendFileToListBackgroundResult(). Otherwise, the return value of this method will be structured the same as the value returned by a successful call to the appendFileToList() method.

If the method has not yet completed, a fault will be thrown. The status of an appendFileToListBackground() 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

$vrapi->fetchAppendFileToListBackgroundResult( {
    session_id => $sid,
    background_task_id => $bg_id,
} );

PHP

$vrapi->fetchAppendFileToListBackgroundResult( array(
    'session_id' => $sid,
    'background_task_id' => $bg_id
) );

Ruby

vr.fetchAppendFileToListBackgroundResult( {
    'session_id' => sid,
    'background_task_id' => bg_id,
} )