====== getBatchStatus ======
Retrieves the status of a batch specified by its BatchRefNum.
===== Description =====
This method will check on the status of any batch within the merchant console. Enter the BatchRefNum (a unique batch reference number assigned by the gateway) into the search field and the method will return the status of the requested batch.
To pull the status of the currently open batch (which has not yet passed to the gateway), use 0 for the the BatchRefNum.
See also [[searchBatches]], [[closeBatch]], [[getBatchTransactions]]
===== Syntax =====
BatchStatus **getBatchStatus** ( [[..:objects:ueSecurityToken]] Token, integer BatchRefNum )
===== Arguments =====
^Type ^Name ^Description ^
|[[..:objects:ueSecurityToken]] |Token |Merchant security token: used to identify merchant and validate transaction.|
|integer |BatchRefNum |A unique batch reference number assigned by the gateway. |
===== Return Value =====
|[[..:objects:BatchStatus]] |This method returns a BatchStatus object which includes information about the requested batch including BatchRefNum (if assigned), batch sequence, status (open, closing, or closed) dates and times when the batch was opened and closed, sales count, credit count, total settled amount and other pertinent details. |
===== Examples =====
==== PHP ====
For directions on how to set up the WSDL link, create "$token" and "$client", go to [[..:howto:php|PHP Soap How-to]].
getBatchStatus($token, $BatchRefNum);
}
catch (SoapFault $e) {
echo "get Batch Upload status failed :" .$e->getMessage();
}
?>
==== Java ====
This example uses the [[developer/javalibrary|USAePay Java library]]. For directions on how to install the library and create the token/client objects, go to either the [[..:howto:javajaxrpc|Java JAX-RPC Howto]] or the [[..:howto:javajaxws|Java JAX-WS Howto]].
try {
//Set BatchNum to the Batch Reference Number of the batch
//you want to retrieve. 0 is always the current batch
BigInteger BatchNum = new BigInteger("0");
BatchStatus batchstat = new BatchStatus();
batchstat = client.getBatchStatus(token, BigInteger.ZERO);
} catch (Exception e) {
System.out.println("Soap Exception: " + e.getMessage());
}
==== XML ====
192.168.0.1
950f8fabf33653800dd71723a89154acaef9458f
11937812191206985820
sha1
HB4P7C4K2w2ZCQQQXRqrxDj6agrS2NIT
0
===== Change History =====
^Version ^Change ^
|1.2 | Renamed BatchNum Parameter to BatchRefNum |
|[[developer:soap-1.1:objects:accountdetails|1.1]] | Soap 1.1 Release |