|
Streamster™ API
The pages referenced below describe how to use Streamster™ API, which can be used to create applications that interface with Novativa Streamster™. Applications using the Streamster API can retrieve various data from Novativa Streamster, execute and modify orders on the market and perform a variety of related actions.
To open and read a particular page, please click on its title.
2.5. GetDesks
GetDesks method returns an array of "Desk" structures. Each Desk structure in the returned array describes one desk on your account, including the name of the desk, the amount available on the desk, and the currency in which this amount is available.
Sample - PHP:
The following sample retrieves all desks and lists them.
<?php
$api = new SoapClient ("http://127.0.0.1:8018/service.wsdl",
array('features' => SOAP_SINGLE_ELEMENT_ARRAYS));
$r = $api -> GetDesks();
if(property_exists($r, "Desk")) {
foreach($r -> Desk as $n => $Desk) {
echo "Name: " . $Desk -> Name;
echo ", Currency: " . $Desk -> Currency;
echo ", Amount: " . $Desk -> Amount;
echo "\n";
}
}
?>
Sample - Visual Basic:
The following sample retrieves all desks and lists them.
Dim api As StreamsterApi = New StreamsterApi
Dim ad As Desk()
Dim d As Desk
ad = api.GetDesks()
For Each d In ad
Console.WriteLine("Name: " & d.Name & ", Currency: " & d.Currency &
", Amount: " & d.Amount)
Next
Send us your comments and any suggestions you might have about the Streamster™ API. We look forward to receiving your input and improving content on this page to help you utilize the API to its full extent.
|