getMarketplaceActivePhpGet
Retrieve the list of active marketplaces
/getMarketplaceActive.php
Usage and SDK Samples
curl -X GET\
-H "Accept: application/xml"\
"https://virtserver.swaggerhub.com/z5917/Test/1.0.0/getMarketplaceActive.php?ZOOMICI_ID=&ZOOMICI_PASS="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.MarketplaceApi;
import java.io.File;
import java.util.*;
public class MarketplaceApiExample {
public static void main(String[] args) {
MarketplaceApi apiInstance = new MarketplaceApi();
String zOOMICIID = zOOMICIID_example; // String |
String zOOMICIPASS = zOOMICIPASS_example; // String |
try {
MarketplaceResponse result = apiInstance.getMarketplaceActivePhpGet(zOOMICIID, zOOMICIPASS);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling MarketplaceApi#getMarketplaceActivePhpGet");
e.printStackTrace();
}
}
}
import io.swagger.client.api.MarketplaceApi;
public class MarketplaceApiExample {
public static void main(String[] args) {
MarketplaceApi apiInstance = new MarketplaceApi();
String zOOMICIID = zOOMICIID_example; // String |
String zOOMICIPASS = zOOMICIPASS_example; // String |
try {
MarketplaceResponse result = apiInstance.getMarketplaceActivePhpGet(zOOMICIID, zOOMICIPASS);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling MarketplaceApi#getMarketplaceActivePhpGet");
e.printStackTrace();
}
}
}
String *zOOMICIID = zOOMICIID_example; //
String *zOOMICIPASS = zOOMICIPASS_example; //
MarketplaceApi *apiInstance = [[MarketplaceApi alloc] init];
// Retrieve the list of active marketplaces
[apiInstance getMarketplaceActivePhpGetWith:zOOMICIID
zOOMICIPASS:zOOMICIPASS
completionHandler: ^(MarketplaceResponse output, NSError* error) {
if (output) {
NSLog(@"%@", output);
}
if (error) {
NSLog(@"Error: %@", error);
}
}];
var ZoomiciApiDocumentation = require('zoomici_api_documentation');
var api = new ZoomiciApiDocumentation.MarketplaceApi()
var zOOMICIID = zOOMICIID_example; // {{String}}
var zOOMICIPASS = zOOMICIPASS_example; // {{String}}
var callback = function(error, data, response) {
if (error) {
console.error(error);
} else {
console.log('API called successfully. Returned data: ' + data);
}
};
api.getMarketplaceActivePhpGet(zOOMICIID, zOOMICIPASS, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;
namespace Example
{
public class getMarketplaceActivePhpGetExample
{
public void main()
{
var apiInstance = new MarketplaceApi();
var zOOMICIID = zOOMICIID_example; // String |
var zOOMICIPASS = zOOMICIPASS_example; // String |
try
{
// Retrieve the list of active marketplaces
MarketplaceResponse result = apiInstance.getMarketplaceActivePhpGet(zOOMICIID, zOOMICIPASS);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling MarketplaceApi.getMarketplaceActivePhpGet: " + e.Message );
}
}
}
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$api_instance = new Swagger\Client\ApiMarketplaceApi();
$zOOMICIID = zOOMICIID_example; // String |
$zOOMICIPASS = zOOMICIPASS_example; // String |
try {
$result = $api_instance->getMarketplaceActivePhpGet($zOOMICIID, $zOOMICIPASS);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling MarketplaceApi->getMarketplaceActivePhpGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::MarketplaceApi;
my $api_instance = WWW::SwaggerClient::MarketplaceApi->new();
my $zOOMICIID = zOOMICIID_example; # String |
my $zOOMICIPASS = zOOMICIPASS_example; # String |
eval {
my $result = $api_instance->getMarketplaceActivePhpGet(zOOMICIID => $zOOMICIID, zOOMICIPASS => $zOOMICIPASS);
print Dumper($result);
};
if ($@) {
warn "Exception when calling MarketplaceApi->getMarketplaceActivePhpGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint
# create an instance of the API class
api_instance = swagger_client.MarketplaceApi()
zOOMICIID = zOOMICIID_example # String |
zOOMICIPASS = zOOMICIPASS_example # String |
try:
# Retrieve the list of active marketplaces
api_response = api_instance.get_marketplace_active_php_get(zOOMICIID, zOOMICIPASS)
pprint(api_response)
except ApiException as e:
print("Exception when calling MarketplaceApi->getMarketplaceActivePhpGet: %s\n" % e)
Parameters
| Name | Description |
|---|---|
| ZOOMICI_ID* |
String
Required
|
| ZOOMICI_PASS* |
String
Required
|