AS Server - API - Warehouse

Default

warehouseGetDeliveryMethods

Warehouse_GetDeliveryMethods


/Warehouse/GetDeliveryMethods/{id}

Usage and SDK Samples

curl -X GET \
 -H "Accept: application/json,text/json,application/xml,text/xml" \
 "https://api.dev.spenda.co/api/Warehouse/GetDeliveryMethods/{id}"
import org.openapitools.client.*;
import org.openapitools.client.auth.*;
import org.openapitools.client.model.*;
import org.openapitools.client.api.DefaultApi;

import java.io.File;
import java.util.*;

public class DefaultApiExample {
    public static void main(String[] args) {

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        Integer id = 56; // Integer | Format - int32.

        try {
            Object result = apiInstance.warehouseGetDeliveryMethods(id);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#warehouseGetDeliveryMethods");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final Integer id = new Integer(); // Integer | Format - int32.

try {
    final result = await api_instance.warehouseGetDeliveryMethods(id);
    print(result);
} catch (e) {
    print('Exception when calling DefaultApi->warehouseGetDeliveryMethods: $e\n');
}

import org.openapitools.client.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        Integer id = 56; // Integer | Format - int32.

        try {
            Object result = apiInstance.warehouseGetDeliveryMethods(id);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#warehouseGetDeliveryMethods");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
Integer *id = 56; // Format - int32. (default to null)

// Warehouse_GetDeliveryMethods
[apiInstance warehouseGetDeliveryMethodsWith:id
              completionHandler: ^(Object output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var AsServerApiWarehouse = require('as_server_api_warehouse');

// Create an instance of the API class
var api = new AsServerApiWarehouse.DefaultApi()
var id = 56; // {Integer} Format - int32.

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.warehouseGetDeliveryMethods(id, callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

namespace Example
{
    public class warehouseGetDeliveryMethodsExample
    {
        public void main()
        {

            // Create an instance of the API class
            var apiInstance = new DefaultApi();
            var id = 56;  // Integer | Format - int32. (default to null)

            try {
                // Warehouse_GetDeliveryMethods
                Object result = apiInstance.warehouseGetDeliveryMethods(id);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.warehouseGetDeliveryMethods: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$id = 56; // Integer | Format - int32.

try {
    $result = $api_instance->warehouseGetDeliveryMethods($id);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->warehouseGetDeliveryMethods: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::DefaultApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();
my $id = 56; # Integer | Format - int32.

eval {
    my $result = $api_instance->warehouseGetDeliveryMethods(id => $id);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->warehouseGetDeliveryMethods: $@\n";
}
from __future__ import print_statement
import time
import openapi_client
from openapi_client.rest import ApiException
from pprint import pprint

# Create an instance of the API class
api_instance = openapi_client.DefaultApi()
id = 56 # Integer | Format - int32. (default to null)

try:
    # Warehouse_GetDeliveryMethods
    api_response = api_instance.warehouse_get_delivery_methods(id)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->warehouseGetDeliveryMethods: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let id = 56; // Integer

    let mut context = DefaultApi::Context::default();
    let result = client.warehouseGetDeliveryMethods(id, &context).wait();

    println!("{:?}", result);
}

Scopes

Parameters

Path parameters
Name Description
id*
Integer (int32)
Format - int32.
Required

Responses


warehouseGetName

Warehouse_GetName


/Warehouse/GetName/{id}

Usage and SDK Samples

curl -X GET \
 -H "Accept: application/json,text/json,application/xml,text/xml" \
 "https://api.dev.spenda.co/api/Warehouse/GetName/{id}"
import org.openapitools.client.*;
import org.openapitools.client.auth.*;
import org.openapitools.client.model.*;
import org.openapitools.client.api.DefaultApi;

import java.io.File;
import java.util.*;

public class DefaultApiExample {
    public static void main(String[] args) {

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        Integer id = 56; // Integer | Format - int32.

        try {
            Object result = apiInstance.warehouseGetName(id);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#warehouseGetName");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final Integer id = new Integer(); // Integer | Format - int32.

try {
    final result = await api_instance.warehouseGetName(id);
    print(result);
} catch (e) {
    print('Exception when calling DefaultApi->warehouseGetName: $e\n');
}

import org.openapitools.client.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        Integer id = 56; // Integer | Format - int32.

        try {
            Object result = apiInstance.warehouseGetName(id);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#warehouseGetName");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
Integer *id = 56; // Format - int32. (default to null)

// Warehouse_GetName
[apiInstance warehouseGetNameWith:id
              completionHandler: ^(Object output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var AsServerApiWarehouse = require('as_server_api_warehouse');

// Create an instance of the API class
var api = new AsServerApiWarehouse.DefaultApi()
var id = 56; // {Integer} Format - int32.

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.warehouseGetName(id, callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

namespace Example
{
    public class warehouseGetNameExample
    {
        public void main()
        {

            // Create an instance of the API class
            var apiInstance = new DefaultApi();
            var id = 56;  // Integer | Format - int32. (default to null)

            try {
                // Warehouse_GetName
                Object result = apiInstance.warehouseGetName(id);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.warehouseGetName: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$id = 56; // Integer | Format - int32.

try {
    $result = $api_instance->warehouseGetName($id);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->warehouseGetName: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::DefaultApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();
my $id = 56; # Integer | Format - int32.

eval {
    my $result = $api_instance->warehouseGetName(id => $id);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->warehouseGetName: $@\n";
}
from __future__ import print_statement
import time
import openapi_client
from openapi_client.rest import ApiException
from pprint import pprint

# Create an instance of the API class
api_instance = openapi_client.DefaultApi()
id = 56 # Integer | Format - int32. (default to null)

try:
    # Warehouse_GetName
    api_response = api_instance.warehouse_get_name(id)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->warehouseGetName: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let id = 56; // Integer

    let mut context = DefaultApi::Context::default();
    let result = client.warehouseGetName(id, &context).wait();

    println!("{:?}", result);
}

Scopes

Parameters

Path parameters
Name Description
id*
Integer (int32)
Format - int32.
Required

Responses


warehouseGetWarehouseAddress

Warehouse_GetWarehouseAddress


/Warehouse/GetWarehouseAddress/{id}

Usage and SDK Samples

curl -X GET \
 -H "Accept: application/json,text/json,application/xml,text/xml" \
 "https://api.dev.spenda.co/api/Warehouse/GetWarehouseAddress/{id}"
import org.openapitools.client.*;
import org.openapitools.client.auth.*;
import org.openapitools.client.model.*;
import org.openapitools.client.api.DefaultApi;

import java.io.File;
import java.util.*;

public class DefaultApiExample {
    public static void main(String[] args) {

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        Integer id = 56; // Integer | Format - int32.

        try {
            Object result = apiInstance.warehouseGetWarehouseAddress(id);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#warehouseGetWarehouseAddress");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final Integer id = new Integer(); // Integer | Format - int32.

try {
    final result = await api_instance.warehouseGetWarehouseAddress(id);
    print(result);
} catch (e) {
    print('Exception when calling DefaultApi->warehouseGetWarehouseAddress: $e\n');
}

import org.openapitools.client.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        Integer id = 56; // Integer | Format - int32.

        try {
            Object result = apiInstance.warehouseGetWarehouseAddress(id);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#warehouseGetWarehouseAddress");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
Integer *id = 56; // Format - int32. (default to null)

// Warehouse_GetWarehouseAddress
[apiInstance warehouseGetWarehouseAddressWith:id
              completionHandler: ^(Object output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var AsServerApiWarehouse = require('as_server_api_warehouse');

// Create an instance of the API class
var api = new AsServerApiWarehouse.DefaultApi()
var id = 56; // {Integer} Format - int32.

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.warehouseGetWarehouseAddress(id, callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

namespace Example
{
    public class warehouseGetWarehouseAddressExample
    {
        public void main()
        {

            // Create an instance of the API class
            var apiInstance = new DefaultApi();
            var id = 56;  // Integer | Format - int32. (default to null)

            try {
                // Warehouse_GetWarehouseAddress
                Object result = apiInstance.warehouseGetWarehouseAddress(id);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.warehouseGetWarehouseAddress: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$id = 56; // Integer | Format - int32.

try {
    $result = $api_instance->warehouseGetWarehouseAddress($id);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->warehouseGetWarehouseAddress: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::DefaultApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();
my $id = 56; # Integer | Format - int32.

eval {
    my $result = $api_instance->warehouseGetWarehouseAddress(id => $id);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->warehouseGetWarehouseAddress: $@\n";
}
from __future__ import print_statement
import time
import openapi_client
from openapi_client.rest import ApiException
from pprint import pprint

# Create an instance of the API class
api_instance = openapi_client.DefaultApi()
id = 56 # Integer | Format - int32. (default to null)

try:
    # Warehouse_GetWarehouseAddress
    api_response = api_instance.warehouse_get_warehouse_address(id)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->warehouseGetWarehouseAddress: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let id = 56; // Integer

    let mut context = DefaultApi::Context::default();
    let result = client.warehouseGetWarehouseAddress(id, &context).wait();

    println!("{:?}", result);
}

Scopes

Parameters

Path parameters
Name Description
id*
Integer (int32)
Format - int32.
Required

Responses


warehouseLocationSearch

Warehouse_LocationSearch


/Warehouse/LocationSearch

Usage and SDK Samples

curl -X PUT \
 -H "Accept: application/json,text/json,application/xml,text/xml" \
 -H "Content-Type: application/json,text/json,application/xml,text/xml,application/x-www-form-urlencoded" \
 "https://api.dev.spenda.co/api/Warehouse/LocationSearch" \
 -d '{
  "ParentID" : 2,
  "Types" : [ "Types", "Types" ],
  "IsApprovedForPOS" : true,
  "IsApprovedForWeb" : true,
  "ExcludePickPack" : true,
  "AdaptorID" : 3,
  "SortField" : "SortField",
  "WarehouseID" : 0,
  "IsExactMatch" : true,
  "CategoryIDs" : [ 2, 2 ],
  "GetCountOnly" : true,
  "SearchString" : "SearchString",
  "IncludeDeleted" : true,
  "InventoryID" : 1,
  "IncludeSystemTasks" : true,
  "StartDate" : "2000-01-23T04:56:07.000+00:00",
  "TenantID" : 7,
  "WarehouseLocationTypeIDs" : [ 6, 6 ],
  "IgnoreID" : 5,
  "IsShowFavourites" : true,
  "IsHierarchicalSort" : true,
  "UserID" : 4,
  "Search" : "Search",
  "SortAsc" : true,
  "GUIDs" : [ "GUIDs", "GUIDs" ],
  "IncludeLogs" : true,
  "ID" : 1,
  "LinkedSupplierID" : 1,
  "Status" : [ "Status", "Status" ],
  "CategoryID" : 9,
  "WebsiteID" : 1,
  "IsHidden" : true,
  "GroupBy" : "GroupBy",
  "BrandIDs" : [ 4, 4 ],
  "LastRowNumber" : 1,
  "MaxResults" : 6,
  "EndDate" : "2000-01-23T04:56:07.000+00:00",
  "Statuses" : [ 5, 5 ],
  "StatusStrings" : [ "StatusStrings", "StatusStrings" ],
  "IsGetBasicInfo" : true,
  "BatchStatus" : "BatchStatus",
  "DatePeriod" : "DatePeriod",
  "IDs" : [ 7, 7 ],
  "IsSystem" : true,
  "SearchNameOnly" : true,
  "IsApprovedForService" : true,
  "TransactionTypeDatTypeID" : 7
}' \
 -d 'Custom MIME type example not yet supported: text/json' \
 -d '<WarehouseLocationFilter>
  <WarehouseID>123</WarehouseID>
  <WarehouseLocationTypeIDs>123</WarehouseLocationTypeIDs>
  <InventoryID>123</InventoryID>
  <ExcludePickPack>true</ExcludePickPack>
  <Statuses>123</Statuses>
  <StatusStrings>aeiou</StatusStrings>
  <Status>aeiou</Status>
  <SearchString>aeiou</SearchString>
  <SearchNameOnly>true</SearchNameOnly>
  <Search>aeiou</Search>
  <StartDate>2000-01-23T04:56:07.000Z</StartDate>
  <EndDate>2000-01-23T04:56:07.000Z</EndDate>
  <DatePeriod>aeiou</DatePeriod>
  <IsExactMatch>true</IsExactMatch>
  <IsGetBasicInfo>true</IsGetBasicInfo>
  <IncludeDeleted>true</IncludeDeleted>
  <IncludeLogs>true</IncludeLogs>
  <IgnoreID>123</IgnoreID>
  <ParentID>123</ParentID>
  <GetCountOnly>true</GetCountOnly>
  <TransactionTypeDatTypeID>123</TransactionTypeDatTypeID>
  <CategoryID>123</CategoryID>
  <AdaptorID>123</AdaptorID>
  <CategoryIDs>123</CategoryIDs>
  <BrandIDs>123</BrandIDs>
  <IDs>123</IDs>
  <GUIDs>aeiou</GUIDs>
  <LinkedSupplierID>123</LinkedSupplierID>
  <IsApprovedForPOS>true</IsApprovedForPOS>
  <IsApprovedForWeb>true</IsApprovedForWeb>
  <IsApprovedForService>true</IsApprovedForService>
  <ID>123</ID>
  <IsHierarchicalSort>true</IsHierarchicalSort>
  <Types>aeiou</Types>
  <IsShowFavourites>true</IsShowFavourites>
  <IsHidden>true</IsHidden>
  <IncludeSystemTasks>true</IncludeSystemTasks>
  <IsSystem>true</IsSystem>
  <BatchStatus>aeiou</BatchStatus>
  <SortField>aeiou</SortField>
  <SortAsc>true</SortAsc>
  <GroupBy>aeiou</GroupBy>
  <LastRowNumber>123456789</LastRowNumber>
  <MaxResults>123</MaxResults>
  <TenantID>123</TenantID>
  <WebsiteID>123</WebsiteID>
  <UserID>123</UserID>
</WarehouseLocationFilter>' \
 -d 'Custom MIME type example not yet supported: text/xml' \
 -d 'Custom MIME type example not yet supported: application/x-www-form-urlencoded'
import org.openapitools.client.*;
import org.openapitools.client.auth.*;
import org.openapitools.client.model.*;
import org.openapitools.client.api.DefaultApi;

import java.io.File;
import java.util.*;

public class DefaultApiExample {
    public static void main(String[] args) {

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        WarehouseLocationFilter warehouseLocationFilter = {"WarehouseID":0,"WarehouseLocationTypeIDs":[0],"InventoryID":0,"ExcludePickPack":true,"Statuses":[0],"StatusStrings":["string"],"Status":["string"],"SearchString":"string","SearchNameOnly":true,"Search":"string","StartDate":"string","EndDate":"string","DatePeriod":"string","IsExactMatch":true,"IsGetBasicInfo":true,"IncludeDeleted":true,"IncludeLogs":true,"IgnoreID":0,"ParentID":0,"GetCountOnly":true,"TransactionTypeDatTypeID":0,"CategoryID":0,"AdaptorID":0,"CategoryIDs":[0],"BrandIDs":[0],"IDs":[0],"GUIDs":["string"],"LinkedSupplierID":0,"IsApprovedForPOS":true,"IsApprovedForWeb":true,"IsApprovedForService":true,"ID":0,"IsHierarchicalSort":true,"Types":["string"],"IsShowFavourites":true,"IsHidden":true,"IncludeSystemTasks":true,"IsSystem":true,"BatchStatus":"string","SortField":"string","SortAsc":true,"GroupBy":"string","LastRowNumber":0,"MaxResults":0,"TenantID":0,"WebsiteID":0,"UserID":0}; // WarehouseLocationFilter | 

        try {
            Object result = apiInstance.warehouseLocationSearch(warehouseLocationFilter);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#warehouseLocationSearch");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final WarehouseLocationFilter warehouseLocationFilter = new WarehouseLocationFilter(); // WarehouseLocationFilter | 

try {
    final result = await api_instance.warehouseLocationSearch(warehouseLocationFilter);
    print(result);
} catch (e) {
    print('Exception when calling DefaultApi->warehouseLocationSearch: $e\n');
}

import org.openapitools.client.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        WarehouseLocationFilter warehouseLocationFilter = {"WarehouseID":0,"WarehouseLocationTypeIDs":[0],"InventoryID":0,"ExcludePickPack":true,"Statuses":[0],"StatusStrings":["string"],"Status":["string"],"SearchString":"string","SearchNameOnly":true,"Search":"string","StartDate":"string","EndDate":"string","DatePeriod":"string","IsExactMatch":true,"IsGetBasicInfo":true,"IncludeDeleted":true,"IncludeLogs":true,"IgnoreID":0,"ParentID":0,"GetCountOnly":true,"TransactionTypeDatTypeID":0,"CategoryID":0,"AdaptorID":0,"CategoryIDs":[0],"BrandIDs":[0],"IDs":[0],"GUIDs":["string"],"LinkedSupplierID":0,"IsApprovedForPOS":true,"IsApprovedForWeb":true,"IsApprovedForService":true,"ID":0,"IsHierarchicalSort":true,"Types":["string"],"IsShowFavourites":true,"IsHidden":true,"IncludeSystemTasks":true,"IsSystem":true,"BatchStatus":"string","SortField":"string","SortAsc":true,"GroupBy":"string","LastRowNumber":0,"MaxResults":0,"TenantID":0,"WebsiteID":0,"UserID":0}; // WarehouseLocationFilter | 

        try {
            Object result = apiInstance.warehouseLocationSearch(warehouseLocationFilter);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#warehouseLocationSearch");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
WarehouseLocationFilter *warehouseLocationFilter = {"WarehouseID":0,"WarehouseLocationTypeIDs":[0],"InventoryID":0,"ExcludePickPack":true,"Statuses":[0],"StatusStrings":["string"],"Status":["string"],"SearchString":"string","SearchNameOnly":true,"Search":"string","StartDate":"string","EndDate":"string","DatePeriod":"string","IsExactMatch":true,"IsGetBasicInfo":true,"IncludeDeleted":true,"IncludeLogs":true,"IgnoreID":0,"ParentID":0,"GetCountOnly":true,"TransactionTypeDatTypeID":0,"CategoryID":0,"AdaptorID":0,"CategoryIDs":[0],"BrandIDs":[0],"IDs":[0],"GUIDs":["string"],"LinkedSupplierID":0,"IsApprovedForPOS":true,"IsApprovedForWeb":true,"IsApprovedForService":true,"ID":0,"IsHierarchicalSort":true,"Types":["string"],"IsShowFavourites":true,"IsHidden":true,"IncludeSystemTasks":true,"IsSystem":true,"BatchStatus":"string","SortField":"string","SortAsc":true,"GroupBy":"string","LastRowNumber":0,"MaxResults":0,"TenantID":0,"WebsiteID":0,"UserID":0}; //  (optional)

// Warehouse_LocationSearch
[apiInstance warehouseLocationSearchWith:warehouseLocationFilter
              completionHandler: ^(Object output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var AsServerApiWarehouse = require('as_server_api_warehouse');

// Create an instance of the API class
var api = new AsServerApiWarehouse.DefaultApi()
var opts = {
  'warehouseLocationFilter': {"WarehouseID":0,"WarehouseLocationTypeIDs":[0],"InventoryID":0,"ExcludePickPack":true,"Statuses":[0],"StatusStrings":["string"],"Status":["string"],"SearchString":"string","SearchNameOnly":true,"Search":"string","StartDate":"string","EndDate":"string","DatePeriod":"string","IsExactMatch":true,"IsGetBasicInfo":true,"IncludeDeleted":true,"IncludeLogs":true,"IgnoreID":0,"ParentID":0,"GetCountOnly":true,"TransactionTypeDatTypeID":0,"CategoryID":0,"AdaptorID":0,"CategoryIDs":[0],"BrandIDs":[0],"IDs":[0],"GUIDs":["string"],"LinkedSupplierID":0,"IsApprovedForPOS":true,"IsApprovedForWeb":true,"IsApprovedForService":true,"ID":0,"IsHierarchicalSort":true,"Types":["string"],"IsShowFavourites":true,"IsHidden":true,"IncludeSystemTasks":true,"IsSystem":true,"BatchStatus":"string","SortField":"string","SortAsc":true,"GroupBy":"string","LastRowNumber":0,"MaxResults":0,"TenantID":0,"WebsiteID":0,"UserID":0} // {WarehouseLocationFilter} 
};

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.warehouseLocationSearch(opts, callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

namespace Example
{
    public class warehouseLocationSearchExample
    {
        public void main()
        {

            // Create an instance of the API class
            var apiInstance = new DefaultApi();
            var warehouseLocationFilter = new WarehouseLocationFilter(); // WarehouseLocationFilter |  (optional) 

            try {
                // Warehouse_LocationSearch
                Object result = apiInstance.warehouseLocationSearch(warehouseLocationFilter);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.warehouseLocationSearch: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$warehouseLocationFilter = {"WarehouseID":0,"WarehouseLocationTypeIDs":[0],"InventoryID":0,"ExcludePickPack":true,"Statuses":[0],"StatusStrings":["string"],"Status":["string"],"SearchString":"string","SearchNameOnly":true,"Search":"string","StartDate":"string","EndDate":"string","DatePeriod":"string","IsExactMatch":true,"IsGetBasicInfo":true,"IncludeDeleted":true,"IncludeLogs":true,"IgnoreID":0,"ParentID":0,"GetCountOnly":true,"TransactionTypeDatTypeID":0,"CategoryID":0,"AdaptorID":0,"CategoryIDs":[0],"BrandIDs":[0],"IDs":[0],"GUIDs":["string"],"LinkedSupplierID":0,"IsApprovedForPOS":true,"IsApprovedForWeb":true,"IsApprovedForService":true,"ID":0,"IsHierarchicalSort":true,"Types":["string"],"IsShowFavourites":true,"IsHidden":true,"IncludeSystemTasks":true,"IsSystem":true,"BatchStatus":"string","SortField":"string","SortAsc":true,"GroupBy":"string","LastRowNumber":0,"MaxResults":0,"TenantID":0,"WebsiteID":0,"UserID":0}; // WarehouseLocationFilter | 

try {
    $result = $api_instance->warehouseLocationSearch($warehouseLocationFilter);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->warehouseLocationSearch: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::DefaultApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();
my $warehouseLocationFilter = WWW::OPenAPIClient::Object::WarehouseLocationFilter->new(); # WarehouseLocationFilter | 

eval {
    my $result = $api_instance->warehouseLocationSearch(warehouseLocationFilter => $warehouseLocationFilter);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->warehouseLocationSearch: $@\n";
}
from __future__ import print_statement
import time
import openapi_client
from openapi_client.rest import ApiException
from pprint import pprint

# Create an instance of the API class
api_instance = openapi_client.DefaultApi()
warehouseLocationFilter = {"WarehouseID":0,"WarehouseLocationTypeIDs":[0],"InventoryID":0,"ExcludePickPack":true,"Statuses":[0],"StatusStrings":["string"],"Status":["string"],"SearchString":"string","SearchNameOnly":true,"Search":"string","StartDate":"string","EndDate":"string","DatePeriod":"string","IsExactMatch":true,"IsGetBasicInfo":true,"IncludeDeleted":true,"IncludeLogs":true,"IgnoreID":0,"ParentID":0,"GetCountOnly":true,"TransactionTypeDatTypeID":0,"CategoryID":0,"AdaptorID":0,"CategoryIDs":[0],"BrandIDs":[0],"IDs":[0],"GUIDs":["string"],"LinkedSupplierID":0,"IsApprovedForPOS":true,"IsApprovedForWeb":true,"IsApprovedForService":true,"ID":0,"IsHierarchicalSort":true,"Types":["string"],"IsShowFavourites":true,"IsHidden":true,"IncludeSystemTasks":true,"IsSystem":true,"BatchStatus":"string","SortField":"string","SortAsc":true,"GroupBy":"string","LastRowNumber":0,"MaxResults":0,"TenantID":0,"WebsiteID":0,"UserID":0} # WarehouseLocationFilter |  (optional)

try:
    # Warehouse_LocationSearch
    api_response = api_instance.warehouse_location_search(warehouseLocationFilter=warehouseLocationFilter)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->warehouseLocationSearch: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let warehouseLocationFilter = {"WarehouseID":0,"WarehouseLocationTypeIDs":[0],"InventoryID":0,"ExcludePickPack":true,"Statuses":[0],"StatusStrings":["string"],"Status":["string"],"SearchString":"string","SearchNameOnly":true,"Search":"string","StartDate":"string","EndDate":"string","DatePeriod":"string","IsExactMatch":true,"IsGetBasicInfo":true,"IncludeDeleted":true,"IncludeLogs":true,"IgnoreID":0,"ParentID":0,"GetCountOnly":true,"TransactionTypeDatTypeID":0,"CategoryID":0,"AdaptorID":0,"CategoryIDs":[0],"BrandIDs":[0],"IDs":[0],"GUIDs":["string"],"LinkedSupplierID":0,"IsApprovedForPOS":true,"IsApprovedForWeb":true,"IsApprovedForService":true,"ID":0,"IsHierarchicalSort":true,"Types":["string"],"IsShowFavourites":true,"IsHidden":true,"IncludeSystemTasks":true,"IsSystem":true,"BatchStatus":"string","SortField":"string","SortAsc":true,"GroupBy":"string","LastRowNumber":0,"MaxResults":0,"TenantID":0,"WebsiteID":0,"UserID":0}; // WarehouseLocationFilter

    let mut context = DefaultApi::Context::default();
    let result = client.warehouseLocationSearch(warehouseLocationFilter, &context).wait();

    println!("{:?}", result);
}

Scopes

Parameters

Body parameters
Name Description
warehouseLocationFilter

Responses


warehouseSearch

Warehouse_Search


/Warehouse/Search

Usage and SDK Samples

curl -X PUT \
 -H "Accept: application/json,text/json,application/xml,text/xml" \
 -H "Content-Type: application/json,text/json,application/xml,text/xml,application/x-www-form-urlencoded" \
 "https://api.dev.spenda.co/api/Warehouse/Search" \
 -d '{
  "ParentID" : 5,
  "Types" : [ "Types", "Types" ],
  "IsApprovedForPOS" : true,
  "IsApprovedForWeb" : true,
  "AdaptorID" : 9,
  "SortField" : "SortField",
  "IsExactMatch" : true,
  "GetCountOnly" : true,
  "SearchString" : "SearchString",
  "IncludeDeleted" : true,
  "IncludeSystemTasks" : true,
  "StartDate" : "2000-01-23T04:56:07.000+00:00",
  "IsCustomerOwned" : true,
  "TenantID" : 6,
  "IsHierarchicalSort" : true,
  "Search" : "Search",
  "GUIDs" : [ "GUIDs", "GUIDs" ],
  "IncludeLogs" : true,
  "ID" : 1,
  "WarehouseTypeIDs" : [ 0, 0 ],
  "Status" : [ "Status", "Status" ],
  "CategoryID" : 7,
  "WebsiteID" : 7,
  "ExcludeProjectWarehousesIfProjectWarehouseID" : 6,
  "GroupBy" : "GroupBy",
  "BrandIDs" : [ 2, 2 ],
  "LastRowNumber" : 1,
  "MaxResults" : 1,
  "Statuses" : [ 1, 1 ],
  "IsGetBasicInfo" : true,
  "BatchStatus" : "BatchStatus",
  "DatePeriod" : "DatePeriod",
  "IDs" : [ 4, 4 ],
  "IsSystem" : true,
  "IncludeVirtual" : true,
  "SearchNameOnly" : true,
  "IsApprovedForService" : true,
  "IsProjectDestination" : true,
  "CategoryIDs" : [ 3, 3 ],
  "IgnoreID" : 5,
  "IsShowFavourites" : true,
  "UserID" : 1,
  "SortAsc" : true,
  "LinkedSupplierID" : 7,
  "IsHidden" : true,
  "EndDate" : "2000-01-23T04:56:07.000+00:00",
  "StatusStrings" : [ "StatusStrings", "StatusStrings" ],
  "MatchOnNameOnly" : true,
  "TransactionTypeDatTypeID" : 2
}' \
 -d 'Custom MIME type example not yet supported: text/json' \
 -d '<WarehouseFilter>
  <WarehouseTypeIDs>123</WarehouseTypeIDs>
  <ExcludeProjectWarehousesIfProjectWarehouseID>123</ExcludeProjectWarehousesIfProjectWarehouseID>
  <IncludeVirtual>true</IncludeVirtual>
  <IsProjectDestination>true</IsProjectDestination>
  <IsCustomerOwned>true</IsCustomerOwned>
  <MatchOnNameOnly>true</MatchOnNameOnly>
  <Statuses>123</Statuses>
  <StatusStrings>aeiou</StatusStrings>
  <Status>aeiou</Status>
  <SearchString>aeiou</SearchString>
  <SearchNameOnly>true</SearchNameOnly>
  <Search>aeiou</Search>
  <StartDate>2000-01-23T04:56:07.000Z</StartDate>
  <EndDate>2000-01-23T04:56:07.000Z</EndDate>
  <DatePeriod>aeiou</DatePeriod>
  <IsExactMatch>true</IsExactMatch>
  <IsGetBasicInfo>true</IsGetBasicInfo>
  <IncludeDeleted>true</IncludeDeleted>
  <IncludeLogs>true</IncludeLogs>
  <IgnoreID>123</IgnoreID>
  <ParentID>123</ParentID>
  <GetCountOnly>true</GetCountOnly>
  <TransactionTypeDatTypeID>123</TransactionTypeDatTypeID>
  <CategoryID>123</CategoryID>
  <AdaptorID>123</AdaptorID>
  <CategoryIDs>123</CategoryIDs>
  <BrandIDs>123</BrandIDs>
  <IDs>123</IDs>
  <GUIDs>aeiou</GUIDs>
  <LinkedSupplierID>123</LinkedSupplierID>
  <IsApprovedForPOS>true</IsApprovedForPOS>
  <IsApprovedForWeb>true</IsApprovedForWeb>
  <IsApprovedForService>true</IsApprovedForService>
  <ID>123</ID>
  <IsHierarchicalSort>true</IsHierarchicalSort>
  <Types>aeiou</Types>
  <IsShowFavourites>true</IsShowFavourites>
  <IsHidden>true</IsHidden>
  <IncludeSystemTasks>true</IncludeSystemTasks>
  <IsSystem>true</IsSystem>
  <BatchStatus>aeiou</BatchStatus>
  <SortField>aeiou</SortField>
  <SortAsc>true</SortAsc>
  <GroupBy>aeiou</GroupBy>
  <LastRowNumber>123456789</LastRowNumber>
  <MaxResults>123</MaxResults>
  <TenantID>123</TenantID>
  <WebsiteID>123</WebsiteID>
  <UserID>123</UserID>
</WarehouseFilter>' \
 -d 'Custom MIME type example not yet supported: text/xml' \
 -d 'Custom MIME type example not yet supported: application/x-www-form-urlencoded'
import org.openapitools.client.*;
import org.openapitools.client.auth.*;
import org.openapitools.client.model.*;
import org.openapitools.client.api.DefaultApi;

import java.io.File;
import java.util.*;

public class DefaultApiExample {
    public static void main(String[] args) {

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        WarehouseFilter warehouseFilter = {"WarehouseTypeIDs":[0],"ExcludeProjectWarehousesIfProjectWarehouseID":0,"IncludeVirtual":true,"IsProjectDestination":true,"IsCustomerOwned":true,"MatchOnNameOnly":true,"Statuses":[0],"StatusStrings":["string"],"Status":["string"],"SearchString":"string","SearchNameOnly":true,"Search":"string","StartDate":"string","EndDate":"string","DatePeriod":"string","IsExactMatch":true,"IsGetBasicInfo":true,"IncludeDeleted":true,"IncludeLogs":true,"IgnoreID":0,"ParentID":0,"GetCountOnly":true,"TransactionTypeDatTypeID":0,"CategoryID":0,"AdaptorID":0,"CategoryIDs":[0],"BrandIDs":[0],"IDs":[0],"GUIDs":["string"],"LinkedSupplierID":0,"IsApprovedForPOS":true,"IsApprovedForWeb":true,"IsApprovedForService":true,"ID":0,"IsHierarchicalSort":true,"Types":["string"],"IsShowFavourites":true,"IsHidden":true,"IncludeSystemTasks":true,"IsSystem":true,"BatchStatus":"string","SortField":"string","SortAsc":true,"GroupBy":"string","LastRowNumber":0,"MaxResults":0,"TenantID":0,"WebsiteID":0,"UserID":0}; // WarehouseFilter | 

        try {
            Object result = apiInstance.warehouseSearch(warehouseFilter);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#warehouseSearch");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final WarehouseFilter warehouseFilter = new WarehouseFilter(); // WarehouseFilter | 

try {
    final result = await api_instance.warehouseSearch(warehouseFilter);
    print(result);
} catch (e) {
    print('Exception when calling DefaultApi->warehouseSearch: $e\n');
}

import org.openapitools.client.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        WarehouseFilter warehouseFilter = {"WarehouseTypeIDs":[0],"ExcludeProjectWarehousesIfProjectWarehouseID":0,"IncludeVirtual":true,"IsProjectDestination":true,"IsCustomerOwned":true,"MatchOnNameOnly":true,"Statuses":[0],"StatusStrings":["string"],"Status":["string"],"SearchString":"string","SearchNameOnly":true,"Search":"string","StartDate":"string","EndDate":"string","DatePeriod":"string","IsExactMatch":true,"IsGetBasicInfo":true,"IncludeDeleted":true,"IncludeLogs":true,"IgnoreID":0,"ParentID":0,"GetCountOnly":true,"TransactionTypeDatTypeID":0,"CategoryID":0,"AdaptorID":0,"CategoryIDs":[0],"BrandIDs":[0],"IDs":[0],"GUIDs":["string"],"LinkedSupplierID":0,"IsApprovedForPOS":true,"IsApprovedForWeb":true,"IsApprovedForService":true,"ID":0,"IsHierarchicalSort":true,"Types":["string"],"IsShowFavourites":true,"IsHidden":true,"IncludeSystemTasks":true,"IsSystem":true,"BatchStatus":"string","SortField":"string","SortAsc":true,"GroupBy":"string","LastRowNumber":0,"MaxResults":0,"TenantID":0,"WebsiteID":0,"UserID":0}; // WarehouseFilter | 

        try {
            Object result = apiInstance.warehouseSearch(warehouseFilter);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#warehouseSearch");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
WarehouseFilter *warehouseFilter = {"WarehouseTypeIDs":[0],"ExcludeProjectWarehousesIfProjectWarehouseID":0,"IncludeVirtual":true,"IsProjectDestination":true,"IsCustomerOwned":true,"MatchOnNameOnly":true,"Statuses":[0],"StatusStrings":["string"],"Status":["string"],"SearchString":"string","SearchNameOnly":true,"Search":"string","StartDate":"string","EndDate":"string","DatePeriod":"string","IsExactMatch":true,"IsGetBasicInfo":true,"IncludeDeleted":true,"IncludeLogs":true,"IgnoreID":0,"ParentID":0,"GetCountOnly":true,"TransactionTypeDatTypeID":0,"CategoryID":0,"AdaptorID":0,"CategoryIDs":[0],"BrandIDs":[0],"IDs":[0],"GUIDs":["string"],"LinkedSupplierID":0,"IsApprovedForPOS":true,"IsApprovedForWeb":true,"IsApprovedForService":true,"ID":0,"IsHierarchicalSort":true,"Types":["string"],"IsShowFavourites":true,"IsHidden":true,"IncludeSystemTasks":true,"IsSystem":true,"BatchStatus":"string","SortField":"string","SortAsc":true,"GroupBy":"string","LastRowNumber":0,"MaxResults":0,"TenantID":0,"WebsiteID":0,"UserID":0}; //  (optional)

// Warehouse_Search
[apiInstance warehouseSearchWith:warehouseFilter
              completionHandler: ^(Object output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var AsServerApiWarehouse = require('as_server_api_warehouse');

// Create an instance of the API class
var api = new AsServerApiWarehouse.DefaultApi()
var opts = {
  'warehouseFilter': {"WarehouseTypeIDs":[0],"ExcludeProjectWarehousesIfProjectWarehouseID":0,"IncludeVirtual":true,"IsProjectDestination":true,"IsCustomerOwned":true,"MatchOnNameOnly":true,"Statuses":[0],"StatusStrings":["string"],"Status":["string"],"SearchString":"string","SearchNameOnly":true,"Search":"string","StartDate":"string","EndDate":"string","DatePeriod":"string","IsExactMatch":true,"IsGetBasicInfo":true,"IncludeDeleted":true,"IncludeLogs":true,"IgnoreID":0,"ParentID":0,"GetCountOnly":true,"TransactionTypeDatTypeID":0,"CategoryID":0,"AdaptorID":0,"CategoryIDs":[0],"BrandIDs":[0],"IDs":[0],"GUIDs":["string"],"LinkedSupplierID":0,"IsApprovedForPOS":true,"IsApprovedForWeb":true,"IsApprovedForService":true,"ID":0,"IsHierarchicalSort":true,"Types":["string"],"IsShowFavourites":true,"IsHidden":true,"IncludeSystemTasks":true,"IsSystem":true,"BatchStatus":"string","SortField":"string","SortAsc":true,"GroupBy":"string","LastRowNumber":0,"MaxResults":0,"TenantID":0,"WebsiteID":0,"UserID":0} // {WarehouseFilter} 
};

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.warehouseSearch(opts, callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

namespace Example
{
    public class warehouseSearchExample
    {
        public void main()
        {

            // Create an instance of the API class
            var apiInstance = new DefaultApi();
            var warehouseFilter = new WarehouseFilter(); // WarehouseFilter |  (optional) 

            try {
                // Warehouse_Search
                Object result = apiInstance.warehouseSearch(warehouseFilter);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.warehouseSearch: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$warehouseFilter = {"WarehouseTypeIDs":[0],"ExcludeProjectWarehousesIfProjectWarehouseID":0,"IncludeVirtual":true,"IsProjectDestination":true,"IsCustomerOwned":true,"MatchOnNameOnly":true,"Statuses":[0],"StatusStrings":["string"],"Status":["string"],"SearchString":"string","SearchNameOnly":true,"Search":"string","StartDate":"string","EndDate":"string","DatePeriod":"string","IsExactMatch":true,"IsGetBasicInfo":true,"IncludeDeleted":true,"IncludeLogs":true,"IgnoreID":0,"ParentID":0,"GetCountOnly":true,"TransactionTypeDatTypeID":0,"CategoryID":0,"AdaptorID":0,"CategoryIDs":[0],"BrandIDs":[0],"IDs":[0],"GUIDs":["string"],"LinkedSupplierID":0,"IsApprovedForPOS":true,"IsApprovedForWeb":true,"IsApprovedForService":true,"ID":0,"IsHierarchicalSort":true,"Types":["string"],"IsShowFavourites":true,"IsHidden":true,"IncludeSystemTasks":true,"IsSystem":true,"BatchStatus":"string","SortField":"string","SortAsc":true,"GroupBy":"string","LastRowNumber":0,"MaxResults":0,"TenantID":0,"WebsiteID":0,"UserID":0}; // WarehouseFilter | 

try {
    $result = $api_instance->warehouseSearch($warehouseFilter);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->warehouseSearch: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::DefaultApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();
my $warehouseFilter = WWW::OPenAPIClient::Object::WarehouseFilter->new(); # WarehouseFilter | 

eval {
    my $result = $api_instance->warehouseSearch(warehouseFilter => $warehouseFilter);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->warehouseSearch: $@\n";
}
from __future__ import print_statement
import time
import openapi_client
from openapi_client.rest import ApiException
from pprint import pprint

# Create an instance of the API class
api_instance = openapi_client.DefaultApi()
warehouseFilter = {"WarehouseTypeIDs":[0],"ExcludeProjectWarehousesIfProjectWarehouseID":0,"IncludeVirtual":true,"IsProjectDestination":true,"IsCustomerOwned":true,"MatchOnNameOnly":true,"Statuses":[0],"StatusStrings":["string"],"Status":["string"],"SearchString":"string","SearchNameOnly":true,"Search":"string","StartDate":"string","EndDate":"string","DatePeriod":"string","IsExactMatch":true,"IsGetBasicInfo":true,"IncludeDeleted":true,"IncludeLogs":true,"IgnoreID":0,"ParentID":0,"GetCountOnly":true,"TransactionTypeDatTypeID":0,"CategoryID":0,"AdaptorID":0,"CategoryIDs":[0],"BrandIDs":[0],"IDs":[0],"GUIDs":["string"],"LinkedSupplierID":0,"IsApprovedForPOS":true,"IsApprovedForWeb":true,"IsApprovedForService":true,"ID":0,"IsHierarchicalSort":true,"Types":["string"],"IsShowFavourites":true,"IsHidden":true,"IncludeSystemTasks":true,"IsSystem":true,"BatchStatus":"string","SortField":"string","SortAsc":true,"GroupBy":"string","LastRowNumber":0,"MaxResults":0,"TenantID":0,"WebsiteID":0,"UserID":0} # WarehouseFilter |  (optional)

try:
    # Warehouse_Search
    api_response = api_instance.warehouse_search(warehouseFilter=warehouseFilter)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->warehouseSearch: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let warehouseFilter = {"WarehouseTypeIDs":[0],"ExcludeProjectWarehousesIfProjectWarehouseID":0,"IncludeVirtual":true,"IsProjectDestination":true,"IsCustomerOwned":true,"MatchOnNameOnly":true,"Statuses":[0],"StatusStrings":["string"],"Status":["string"],"SearchString":"string","SearchNameOnly":true,"Search":"string","StartDate":"string","EndDate":"string","DatePeriod":"string","IsExactMatch":true,"IsGetBasicInfo":true,"IncludeDeleted":true,"IncludeLogs":true,"IgnoreID":0,"ParentID":0,"GetCountOnly":true,"TransactionTypeDatTypeID":0,"CategoryID":0,"AdaptorID":0,"CategoryIDs":[0],"BrandIDs":[0],"IDs":[0],"GUIDs":["string"],"LinkedSupplierID":0,"IsApprovedForPOS":true,"IsApprovedForWeb":true,"IsApprovedForService":true,"ID":0,"IsHierarchicalSort":true,"Types":["string"],"IsShowFavourites":true,"IsHidden":true,"IncludeSystemTasks":true,"IsSystem":true,"BatchStatus":"string","SortField":"string","SortAsc":true,"GroupBy":"string","LastRowNumber":0,"MaxResults":0,"TenantID":0,"WebsiteID":0,"UserID":0}; // WarehouseFilter

    let mut context = DefaultApi::Context::default();
    let result = client.warehouseSearch(warehouseFilter, &context).wait();

    println!("{:?}", result);
}

Scopes

Parameters

Body parameters
Name Description
warehouseFilter

Responses


warehouseSearchInventoryAndAssets

Warehouse_SearchInventoryAndAssets


/Warehouse/SearchInventoryAndAssets

Usage and SDK Samples

curl -X PUT \
 -H "Accept: application/json,text/json,application/xml,text/xml" \
 -H "Content-Type: application/json,text/json,application/xml,text/xml,application/x-www-form-urlencoded" \
 "https://api.dev.spenda.co/api/Warehouse/SearchInventoryAndAssets" \
 -d '{
  "VariantMasterInventoryID" : 1,
  "ParentID" : 9,
  "Types" : [ "Types", "Types" ],
  "MustHave" : "MustHave",
  "IsApprovedForPOS" : true,
  "IsApprovedForWeb" : true,
  "IsPurchased" : true,
  "AdaptorID" : 9,
  "IsShowPublishedOnly" : true,
  "SortField" : "SortField",
  "WarehouseID" : 1,
  "CustomerID" : 9,
  "IsExactMatch" : true,
  "InventoryClassGroupID" : 1,
  "GetCountOnly" : true,
  "SearchString" : "SearchString",
  "IncludeDeleted" : true,
  "InventoryID" : 2,
  "IsSearchSuppliersCatalog" : true,
  "IncludeSystemTasks" : true,
  "StartDate" : "2000-01-23T04:56:07.000+00:00",
  "SupplierID" : 3,
  "IncludePickandPackedAssets" : true,
  "TenantID" : 5,
  "IsHierarchicalSort" : true,
  "ViewMode" : "ViewMode",
  "Search" : "Search",
  "PurchaseOrderID" : 5,
  "GUIDs" : [ "GUIDs", "GUIDs" ],
  "IncludeLogs" : true,
  "ID" : 2,
  "TransDatTypeID" : 6,
  "Status" : [ "Status", "Status" ],
  "CategoryID" : 8,
  "WebsiteID" : 6,
  "GroupBy" : "GroupBy",
  "BrandList" : [ {
    "IsBool" : true,
    "FeatureValueID" : 0,
    "Value" : "Value",
    "IsSelected" : true,
    "RecordCount" : 6,
    "Name" : "Name"
  }, {
    "IsBool" : true,
    "FeatureValueID" : 0,
    "Value" : "Value",
    "IsSelected" : true,
    "RecordCount" : 6,
    "Name" : "Name"
  } ],
  "BrandIDs" : [ 3, 3 ],
  "LastRowNumber" : 6,
  "MaxResults" : 6,
  "IsSOHTracked" : true,
  "IsShowChildVariants" : true,
  "SupplierGUID" : "00000000-0000-0000-0000-000000000000",
  "InventoryClassID" : 7,
  "ShowSOHFromWarehouseID" : 7,
  "InventoryClassGroupTypeID" : 1,
  "StockTakeID" : 4,
  "IsSold" : true,
  "Statuses" : [ 5, 5 ],
  "IsGetBasicInfo" : true,
  "BatchStatus" : "BatchStatus",
  "DatePeriod" : "DatePeriod",
  "IDs" : [ 6, 6 ],
  "IsSystem" : true,
  "TransID" : 1,
  "SearchNameOnly" : true,
  "IsApprovedForService" : true,
  "Exclusions" : "Exclusions",
  "ShowDeletedItems" : true,
  "CategoryIDs" : [ 6, 6 ],
  "IsShowVariantMaster" : true,
  "CanHave" : "CanHave",
  "ShowAlternateLocationsFromWarehouseID" : 4,
  "IgnoreID" : 9,
  "IsShowFavourites" : true,
  "UserID" : 3,
  "SortAsc" : true,
  "SearchType" : 2,
  "WarehouseLocationID" : 5,
  "LinkedSupplierID" : 1,
  "OrderBy" : "OrderBy",
  "IsHidden" : true,
  "InventoryGUID" : "00000000-0000-0000-0000-000000000000",
  "IsShowPostingInventoryOnly" : true,
  "EndDate" : "2000-01-23T04:56:07.000+00:00",
  "StartRow" : 7,
  "StatusStrings" : [ "StatusStrings", "StatusStrings" ],
  "ExcludeItemsInMasterList" : true,
  "IsIncludeCategories" : true,
  "TransactionTypeDatTypeID" : 6
}' \
 -d 'Custom MIME type example not yet supported: text/json' \
 -d '<InventoryFilter>
  <MustHave>aeiou</MustHave>
  <CanHave>aeiou</CanHave>
  <Exclusions>aeiou</Exclusions>
  <null>
    <FeatureValueID>123</FeatureValueID>
    <Value>aeiou</Value>
    <Name>aeiou</Name>
    <IsBool>true</IsBool>
    <RecordCount>123</RecordCount>
    <IsSelected>true</IsSelected>
  </null>
  <ShowDeletedItems>true</ShowDeletedItems>
  <WarehouseID>123</WarehouseID>
  <WarehouseLocationID>123</WarehouseLocationID>
  <PurchaseOrderID>123</PurchaseOrderID>
  <InventoryID>123</InventoryID>
  <InventoryClassID>123</InventoryClassID>
  <ExcludeItemsInMasterList>true</ExcludeItemsInMasterList>
  <CustomerID>123</CustomerID>
  <SupplierID>123</SupplierID>
  <SearchType>123</SearchType>
  <StockTakeID>123</StockTakeID>
  <StartRow>123</StartRow>
  <OrderBy>aeiou</OrderBy>
  <IsShowPublishedOnly>true</IsShowPublishedOnly>
  <InventoryClassGroupID>123</InventoryClassGroupID>
  <InventoryClassGroupTypeID>123</InventoryClassGroupTypeID>
  <IncludePickandPackedAssets>true</IncludePickandPackedAssets>
  <TransID>123</TransID>
  <TransDatTypeID>123</TransDatTypeID>
  <IsSearchSuppliersCatalog>true</IsSearchSuppliersCatalog>
  <InventoryGUID>00000000-0000-0000-0000-000000000000</InventoryGUID>
  <IsShowChildVariants>true</IsShowChildVariants>
  <IsIncludeCategories>true</IsIncludeCategories>
  <IsShowPostingInventoryOnly>true</IsShowPostingInventoryOnly>
  <ShowSOHFromWarehouseID>123</ShowSOHFromWarehouseID>
  <IsPurchased>true</IsPurchased>
  <IsSold>true</IsSold>
  <IsSOHTracked>true</IsSOHTracked>
  <ViewMode>aeiou</ViewMode>
  <VariantMasterInventoryID>123</VariantMasterInventoryID>
  <ShowAlternateLocationsFromWarehouseID>123</ShowAlternateLocationsFromWarehouseID>
  <SupplierGUID>00000000-0000-0000-0000-000000000000</SupplierGUID>
  <IsShowVariantMaster>true</IsShowVariantMaster>
  <Statuses>123</Statuses>
  <StatusStrings>aeiou</StatusStrings>
  <Status>aeiou</Status>
  <SearchString>aeiou</SearchString>
  <SearchNameOnly>true</SearchNameOnly>
  <Search>aeiou</Search>
  <StartDate>2000-01-23T04:56:07.000Z</StartDate>
  <EndDate>2000-01-23T04:56:07.000Z</EndDate>
  <DatePeriod>aeiou</DatePeriod>
  <IsExactMatch>true</IsExactMatch>
  <IsGetBasicInfo>true</IsGetBasicInfo>
  <IncludeDeleted>true</IncludeDeleted>
  <IncludeLogs>true</IncludeLogs>
  <IgnoreID>123</IgnoreID>
  <ParentID>123</ParentID>
  <GetCountOnly>true</GetCountOnly>
  <TransactionTypeDatTypeID>123</TransactionTypeDatTypeID>
  <CategoryID>123</CategoryID>
  <AdaptorID>123</AdaptorID>
  <CategoryIDs>123</CategoryIDs>
  <BrandIDs>123</BrandIDs>
  <IDs>123</IDs>
  <GUIDs>aeiou</GUIDs>
  <LinkedSupplierID>123</LinkedSupplierID>
  <IsApprovedForPOS>true</IsApprovedForPOS>
  <IsApprovedForWeb>true</IsApprovedForWeb>
  <IsApprovedForService>true</IsApprovedForService>
  <ID>123</ID>
  <IsHierarchicalSort>true</IsHierarchicalSort>
  <Types>aeiou</Types>
  <IsShowFavourites>true</IsShowFavourites>
  <IsHidden>true</IsHidden>
  <IncludeSystemTasks>true</IncludeSystemTasks>
  <IsSystem>true</IsSystem>
  <BatchStatus>aeiou</BatchStatus>
  <SortField>aeiou</SortField>
  <SortAsc>true</SortAsc>
  <GroupBy>aeiou</GroupBy>
  <LastRowNumber>123456789</LastRowNumber>
  <MaxResults>123</MaxResults>
  <TenantID>123</TenantID>
  <WebsiteID>123</WebsiteID>
  <UserID>123</UserID>
</InventoryFilter>' \
 -d 'Custom MIME type example not yet supported: text/xml' \
 -d 'Custom MIME type example not yet supported: application/x-www-form-urlencoded'
import org.openapitools.client.*;
import org.openapitools.client.auth.*;
import org.openapitools.client.model.*;
import org.openapitools.client.api.DefaultApi;

import java.io.File;
import java.util.*;

public class DefaultApiExample {
    public static void main(String[] args) {

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        InventoryFilter inventoryFilter = {"MustHave":"string","CanHave":"string","Exclusions":"string","BrandList":[{"FeatureValueID":0,"Value":"string","Name":"string","IsBool":true,"RecordCount":0,"IsSelected":true}],"ShowDeletedItems":true,"WarehouseID":0,"WarehouseLocationID":0,"PurchaseOrderID":0,"InventoryID":0,"InventoryClassID":0,"ExcludeItemsInMasterList":true,"CustomerID":0,"SupplierID":0,"SearchType":0,"StockTakeID":0,"StartRow":0,"OrderBy":"string","IsShowPublishedOnly":true,"InventoryClassGroupID":0,"InventoryClassGroupTypeID":0,"IncludePickandPackedAssets":true,"TransID":0,"TransDatTypeID":0,"IsSearchSuppliersCatalog":true,"InventoryGUID":"00000000-0000-0000-0000-000000000000","IsShowChildVariants":true,"IsIncludeCategories":true,"IsShowPostingInventoryOnly":true,"ShowSOHFromWarehouseID":0,"IsPurchased":true,"IsSold":true,"IsSOHTracked":true,"ViewMode":"string","VariantMasterInventoryID":0,"ShowAlternateLocationsFromWarehouseID":0,"SupplierGUID":"00000000-0000-0000-0000-000000000000","IsShowVariantMaster":true,"Statuses":[0],"StatusStrings":["string"],"Status":["string"],"SearchString":"string","SearchNameOnly":true,"Search":"string","StartDate":"string","EndDate":"string","DatePeriod":"string","IsExactMatch":true,"IsGetBasicInfo":true,"IncludeDeleted":true,"IncludeLogs":true,"IgnoreID":0,"ParentID":0,"GetCountOnly":true,"TransactionTypeDatTypeID":0,"CategoryID":0,"AdaptorID":0,"CategoryIDs":[0],"BrandIDs":[0],"IDs":[0],"GUIDs":["string"],"LinkedSupplierID":0,"IsApprovedForPOS":true,"IsApprovedForWeb":true,"IsApprovedForService":true,"ID":0,"IsHierarchicalSort":true,"Types":["string"],"IsShowFavourites":true,"IsHidden":true,"IncludeSystemTasks":true,"IsSystem":true,"BatchStatus":"string","SortField":"string","SortAsc":true,"GroupBy":"string","LastRowNumber":0,"MaxResults":0,"TenantID":0,"WebsiteID":0,"UserID":0}; // InventoryFilter | 

        try {
            Object result = apiInstance.warehouseSearchInventoryAndAssets(inventoryFilter);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#warehouseSearchInventoryAndAssets");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final InventoryFilter inventoryFilter = new InventoryFilter(); // InventoryFilter | 

try {
    final result = await api_instance.warehouseSearchInventoryAndAssets(inventoryFilter);
    print(result);
} catch (e) {
    print('Exception when calling DefaultApi->warehouseSearchInventoryAndAssets: $e\n');
}

import org.openapitools.client.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        InventoryFilter inventoryFilter = {"MustHave":"string","CanHave":"string","Exclusions":"string","BrandList":[{"FeatureValueID":0,"Value":"string","Name":"string","IsBool":true,"RecordCount":0,"IsSelected":true}],"ShowDeletedItems":true,"WarehouseID":0,"WarehouseLocationID":0,"PurchaseOrderID":0,"InventoryID":0,"InventoryClassID":0,"ExcludeItemsInMasterList":true,"CustomerID":0,"SupplierID":0,"SearchType":0,"StockTakeID":0,"StartRow":0,"OrderBy":"string","IsShowPublishedOnly":true,"InventoryClassGroupID":0,"InventoryClassGroupTypeID":0,"IncludePickandPackedAssets":true,"TransID":0,"TransDatTypeID":0,"IsSearchSuppliersCatalog":true,"InventoryGUID":"00000000-0000-0000-0000-000000000000","IsShowChildVariants":true,"IsIncludeCategories":true,"IsShowPostingInventoryOnly":true,"ShowSOHFromWarehouseID":0,"IsPurchased":true,"IsSold":true,"IsSOHTracked":true,"ViewMode":"string","VariantMasterInventoryID":0,"ShowAlternateLocationsFromWarehouseID":0,"SupplierGUID":"00000000-0000-0000-0000-000000000000","IsShowVariantMaster":true,"Statuses":[0],"StatusStrings":["string"],"Status":["string"],"SearchString":"string","SearchNameOnly":true,"Search":"string","StartDate":"string","EndDate":"string","DatePeriod":"string","IsExactMatch":true,"IsGetBasicInfo":true,"IncludeDeleted":true,"IncludeLogs":true,"IgnoreID":0,"ParentID":0,"GetCountOnly":true,"TransactionTypeDatTypeID":0,"CategoryID":0,"AdaptorID":0,"CategoryIDs":[0],"BrandIDs":[0],"IDs":[0],"GUIDs":["string"],"LinkedSupplierID":0,"IsApprovedForPOS":true,"IsApprovedForWeb":true,"IsApprovedForService":true,"ID":0,"IsHierarchicalSort":true,"Types":["string"],"IsShowFavourites":true,"IsHidden":true,"IncludeSystemTasks":true,"IsSystem":true,"BatchStatus":"string","SortField":"string","SortAsc":true,"GroupBy":"string","LastRowNumber":0,"MaxResults":0,"TenantID":0,"WebsiteID":0,"UserID":0}; // InventoryFilter | 

        try {
            Object result = apiInstance.warehouseSearchInventoryAndAssets(inventoryFilter);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#warehouseSearchInventoryAndAssets");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
InventoryFilter *inventoryFilter = {"MustHave":"string","CanHave":"string","Exclusions":"string","BrandList":[{"FeatureValueID":0,"Value":"string","Name":"string","IsBool":true,"RecordCount":0,"IsSelected":true}],"ShowDeletedItems":true,"WarehouseID":0,"WarehouseLocationID":0,"PurchaseOrderID":0,"InventoryID":0,"InventoryClassID":0,"ExcludeItemsInMasterList":true,"CustomerID":0,"SupplierID":0,"SearchType":0,"StockTakeID":0,"StartRow":0,"OrderBy":"string","IsShowPublishedOnly":true,"InventoryClassGroupID":0,"InventoryClassGroupTypeID":0,"IncludePickandPackedAssets":true,"TransID":0,"TransDatTypeID":0,"IsSearchSuppliersCatalog":true,"InventoryGUID":"00000000-0000-0000-0000-000000000000","IsShowChildVariants":true,"IsIncludeCategories":true,"IsShowPostingInventoryOnly":true,"ShowSOHFromWarehouseID":0,"IsPurchased":true,"IsSold":true,"IsSOHTracked":true,"ViewMode":"string","VariantMasterInventoryID":0,"ShowAlternateLocationsFromWarehouseID":0,"SupplierGUID":"00000000-0000-0000-0000-000000000000","IsShowVariantMaster":true,"Statuses":[0],"StatusStrings":["string"],"Status":["string"],"SearchString":"string","SearchNameOnly":true,"Search":"string","StartDate":"string","EndDate":"string","DatePeriod":"string","IsExactMatch":true,"IsGetBasicInfo":true,"IncludeDeleted":true,"IncludeLogs":true,"IgnoreID":0,"ParentID":0,"GetCountOnly":true,"TransactionTypeDatTypeID":0,"CategoryID":0,"AdaptorID":0,"CategoryIDs":[0],"BrandIDs":[0],"IDs":[0],"GUIDs":["string"],"LinkedSupplierID":0,"IsApprovedForPOS":true,"IsApprovedForWeb":true,"IsApprovedForService":true,"ID":0,"IsHierarchicalSort":true,"Types":["string"],"IsShowFavourites":true,"IsHidden":true,"IncludeSystemTasks":true,"IsSystem":true,"BatchStatus":"string","SortField":"string","SortAsc":true,"GroupBy":"string","LastRowNumber":0,"MaxResults":0,"TenantID":0,"WebsiteID":0,"UserID":0}; //  (optional)

// Warehouse_SearchInventoryAndAssets
[apiInstance warehouseSearchInventoryAndAssetsWith:inventoryFilter
              completionHandler: ^(Object output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var AsServerApiWarehouse = require('as_server_api_warehouse');

// Create an instance of the API class
var api = new AsServerApiWarehouse.DefaultApi()
var opts = {
  'inventoryFilter': {"MustHave":"string","CanHave":"string","Exclusions":"string","BrandList":[{"FeatureValueID":0,"Value":"string","Name":"string","IsBool":true,"RecordCount":0,"IsSelected":true}],"ShowDeletedItems":true,"WarehouseID":0,"WarehouseLocationID":0,"PurchaseOrderID":0,"InventoryID":0,"InventoryClassID":0,"ExcludeItemsInMasterList":true,"CustomerID":0,"SupplierID":0,"SearchType":0,"StockTakeID":0,"StartRow":0,"OrderBy":"string","IsShowPublishedOnly":true,"InventoryClassGroupID":0,"InventoryClassGroupTypeID":0,"IncludePickandPackedAssets":true,"TransID":0,"TransDatTypeID":0,"IsSearchSuppliersCatalog":true,"InventoryGUID":"00000000-0000-0000-0000-000000000000","IsShowChildVariants":true,"IsIncludeCategories":true,"IsShowPostingInventoryOnly":true,"ShowSOHFromWarehouseID":0,"IsPurchased":true,"IsSold":true,"IsSOHTracked":true,"ViewMode":"string","VariantMasterInventoryID":0,"ShowAlternateLocationsFromWarehouseID":0,"SupplierGUID":"00000000-0000-0000-0000-000000000000","IsShowVariantMaster":true,"Statuses":[0],"StatusStrings":["string"],"Status":["string"],"SearchString":"string","SearchNameOnly":true,"Search":"string","StartDate":"string","EndDate":"string","DatePeriod":"string","IsExactMatch":true,"IsGetBasicInfo":true,"IncludeDeleted":true,"IncludeLogs":true,"IgnoreID":0,"ParentID":0,"GetCountOnly":true,"TransactionTypeDatTypeID":0,"CategoryID":0,"AdaptorID":0,"CategoryIDs":[0],"BrandIDs":[0],"IDs":[0],"GUIDs":["string"],"LinkedSupplierID":0,"IsApprovedForPOS":true,"IsApprovedForWeb":true,"IsApprovedForService":true,"ID":0,"IsHierarchicalSort":true,"Types":["string"],"IsShowFavourites":true,"IsHidden":true,"IncludeSystemTasks":true,"IsSystem":true,"BatchStatus":"string","SortField":"string","SortAsc":true,"GroupBy":"string","LastRowNumber":0,"MaxResults":0,"TenantID":0,"WebsiteID":0,"UserID":0} // {InventoryFilter} 
};

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.warehouseSearchInventoryAndAssets(opts, callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

namespace Example
{
    public class warehouseSearchInventoryAndAssetsExample
    {
        public void main()
        {

            // Create an instance of the API class
            var apiInstance = new DefaultApi();
            var inventoryFilter = new InventoryFilter(); // InventoryFilter |  (optional) 

            try {
                // Warehouse_SearchInventoryAndAssets
                Object result = apiInstance.warehouseSearchInventoryAndAssets(inventoryFilter);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.warehouseSearchInventoryAndAssets: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$inventoryFilter = {"MustHave":"string","CanHave":"string","Exclusions":"string","BrandList":[{"FeatureValueID":0,"Value":"string","Name":"string","IsBool":true,"RecordCount":0,"IsSelected":true}],"ShowDeletedItems":true,"WarehouseID":0,"WarehouseLocationID":0,"PurchaseOrderID":0,"InventoryID":0,"InventoryClassID":0,"ExcludeItemsInMasterList":true,"CustomerID":0,"SupplierID":0,"SearchType":0,"StockTakeID":0,"StartRow":0,"OrderBy":"string","IsShowPublishedOnly":true,"InventoryClassGroupID":0,"InventoryClassGroupTypeID":0,"IncludePickandPackedAssets":true,"TransID":0,"TransDatTypeID":0,"IsSearchSuppliersCatalog":true,"InventoryGUID":"00000000-0000-0000-0000-000000000000","IsShowChildVariants":true,"IsIncludeCategories":true,"IsShowPostingInventoryOnly":true,"ShowSOHFromWarehouseID":0,"IsPurchased":true,"IsSold":true,"IsSOHTracked":true,"ViewMode":"string","VariantMasterInventoryID":0,"ShowAlternateLocationsFromWarehouseID":0,"SupplierGUID":"00000000-0000-0000-0000-000000000000","IsShowVariantMaster":true,"Statuses":[0],"StatusStrings":["string"],"Status":["string"],"SearchString":"string","SearchNameOnly":true,"Search":"string","StartDate":"string","EndDate":"string","DatePeriod":"string","IsExactMatch":true,"IsGetBasicInfo":true,"IncludeDeleted":true,"IncludeLogs":true,"IgnoreID":0,"ParentID":0,"GetCountOnly":true,"TransactionTypeDatTypeID":0,"CategoryID":0,"AdaptorID":0,"CategoryIDs":[0],"BrandIDs":[0],"IDs":[0],"GUIDs":["string"],"LinkedSupplierID":0,"IsApprovedForPOS":true,"IsApprovedForWeb":true,"IsApprovedForService":true,"ID":0,"IsHierarchicalSort":true,"Types":["string"],"IsShowFavourites":true,"IsHidden":true,"IncludeSystemTasks":true,"IsSystem":true,"BatchStatus":"string","SortField":"string","SortAsc":true,"GroupBy":"string","LastRowNumber":0,"MaxResults":0,"TenantID":0,"WebsiteID":0,"UserID":0}; // InventoryFilter | 

try {
    $result = $api_instance->warehouseSearchInventoryAndAssets($inventoryFilter);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->warehouseSearchInventoryAndAssets: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::DefaultApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();
my $inventoryFilter = WWW::OPenAPIClient::Object::InventoryFilter->new(); # InventoryFilter | 

eval {
    my $result = $api_instance->warehouseSearchInventoryAndAssets(inventoryFilter => $inventoryFilter);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->warehouseSearchInventoryAndAssets: $@\n";
}
from __future__ import print_statement
import time
import openapi_client
from openapi_client.rest import ApiException
from pprint import pprint

# Create an instance of the API class
api_instance = openapi_client.DefaultApi()
inventoryFilter = {"MustHave":"string","CanHave":"string","Exclusions":"string","BrandList":[{"FeatureValueID":0,"Value":"string","Name":"string","IsBool":true,"RecordCount":0,"IsSelected":true}],"ShowDeletedItems":true,"WarehouseID":0,"WarehouseLocationID":0,"PurchaseOrderID":0,"InventoryID":0,"InventoryClassID":0,"ExcludeItemsInMasterList":true,"CustomerID":0,"SupplierID":0,"SearchType":0,"StockTakeID":0,"StartRow":0,"OrderBy":"string","IsShowPublishedOnly":true,"InventoryClassGroupID":0,"InventoryClassGroupTypeID":0,"IncludePickandPackedAssets":true,"TransID":0,"TransDatTypeID":0,"IsSearchSuppliersCatalog":true,"InventoryGUID":"00000000-0000-0000-0000-000000000000","IsShowChildVariants":true,"IsIncludeCategories":true,"IsShowPostingInventoryOnly":true,"ShowSOHFromWarehouseID":0,"IsPurchased":true,"IsSold":true,"IsSOHTracked":true,"ViewMode":"string","VariantMasterInventoryID":0,"ShowAlternateLocationsFromWarehouseID":0,"SupplierGUID":"00000000-0000-0000-0000-000000000000","IsShowVariantMaster":true,"Statuses":[0],"StatusStrings":["string"],"Status":["string"],"SearchString":"string","SearchNameOnly":true,"Search":"string","StartDate":"string","EndDate":"string","DatePeriod":"string","IsExactMatch":true,"IsGetBasicInfo":true,"IncludeDeleted":true,"IncludeLogs":true,"IgnoreID":0,"ParentID":0,"GetCountOnly":true,"TransactionTypeDatTypeID":0,"CategoryID":0,"AdaptorID":0,"CategoryIDs":[0],"BrandIDs":[0],"IDs":[0],"GUIDs":["string"],"LinkedSupplierID":0,"IsApprovedForPOS":true,"IsApprovedForWeb":true,"IsApprovedForService":true,"ID":0,"IsHierarchicalSort":true,"Types":["string"],"IsShowFavourites":true,"IsHidden":true,"IncludeSystemTasks":true,"IsSystem":true,"BatchStatus":"string","SortField":"string","SortAsc":true,"GroupBy":"string","LastRowNumber":0,"MaxResults":0,"TenantID":0,"WebsiteID":0,"UserID":0} # InventoryFilter |  (optional)

try:
    # Warehouse_SearchInventoryAndAssets
    api_response = api_instance.warehouse_search_inventory_and_assets(inventoryFilter=inventoryFilter)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->warehouseSearchInventoryAndAssets: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let inventoryFilter = {"MustHave":"string","CanHave":"string","Exclusions":"string","BrandList":[{"FeatureValueID":0,"Value":"string","Name":"string","IsBool":true,"RecordCount":0,"IsSelected":true}],"ShowDeletedItems":true,"WarehouseID":0,"WarehouseLocationID":0,"PurchaseOrderID":0,"InventoryID":0,"InventoryClassID":0,"ExcludeItemsInMasterList":true,"CustomerID":0,"SupplierID":0,"SearchType":0,"StockTakeID":0,"StartRow":0,"OrderBy":"string","IsShowPublishedOnly":true,"InventoryClassGroupID":0,"InventoryClassGroupTypeID":0,"IncludePickandPackedAssets":true,"TransID":0,"TransDatTypeID":0,"IsSearchSuppliersCatalog":true,"InventoryGUID":"00000000-0000-0000-0000-000000000000","IsShowChildVariants":true,"IsIncludeCategories":true,"IsShowPostingInventoryOnly":true,"ShowSOHFromWarehouseID":0,"IsPurchased":true,"IsSold":true,"IsSOHTracked":true,"ViewMode":"string","VariantMasterInventoryID":0,"ShowAlternateLocationsFromWarehouseID":0,"SupplierGUID":"00000000-0000-0000-0000-000000000000","IsShowVariantMaster":true,"Statuses":[0],"StatusStrings":["string"],"Status":["string"],"SearchString":"string","SearchNameOnly":true,"Search":"string","StartDate":"string","EndDate":"string","DatePeriod":"string","IsExactMatch":true,"IsGetBasicInfo":true,"IncludeDeleted":true,"IncludeLogs":true,"IgnoreID":0,"ParentID":0,"GetCountOnly":true,"TransactionTypeDatTypeID":0,"CategoryID":0,"AdaptorID":0,"CategoryIDs":[0],"BrandIDs":[0],"IDs":[0],"GUIDs":["string"],"LinkedSupplierID":0,"IsApprovedForPOS":true,"IsApprovedForWeb":true,"IsApprovedForService":true,"ID":0,"IsHierarchicalSort":true,"Types":["string"],"IsShowFavourites":true,"IsHidden":true,"IncludeSystemTasks":true,"IsSystem":true,"BatchStatus":"string","SortField":"string","SortAsc":true,"GroupBy":"string","LastRowNumber":0,"MaxResults":0,"TenantID":0,"WebsiteID":0,"UserID":0}; // InventoryFilter

    let mut context = DefaultApi::Context::default();
    let result = client.warehouseSearchInventoryAndAssets(inventoryFilter, &context).wait();

    println!("{:?}", result);
}

Scopes

Parameters

Body parameters
Name Description
inventoryFilter

Responses


warehouseSearchT

Warehouse_SearchT


/Warehouse/

Usage and SDK Samples

curl -X GET \
 -H "Accept: application/json,text/json,application/xml,text/xml" \
 "https://api.dev.spenda.co/api/Warehouse/?filter.warehouseTypeIDs=&filter.excludeProjectWarehousesIfProjectWarehouseID=56&filter.includeVirtual=true&filter.isProjectDestination=true&filter.isCustomerOwned=true&filter.matchOnNameOnly=true&filter.statuses=&filter.statusStrings=&filter.status=&filter.searchString=filterPeriodsearchString_example&filter.searchNameOnly=true&filter.search=filterPeriodsearch_example&filter.startDate=2013-10-20T19:20:30+01:00&filter.endDate=2013-10-20T19:20:30+01:00&filter.datePeriod=filterPerioddatePeriod_example&filter.isExactMatch=true&filter.isGetBasicInfo=true&filter.includeDeleted=true&filter.includeLogs=true&filter.ignoreID=56&filter.parentID=56&filter.getCountOnly=true&filter.transactionTypeDatTypeID=56&filter.categoryID=56&filter.adaptorID=56&filter.categoryIDs=&filter.brandIDs=&filter.iDs=&filter.gUIDs=&filter.linkedSupplierID=56&filter.isApprovedForPOS=true&filter.isApprovedForWeb=true&filter.isApprovedForService=true&filter.iD=56&filter.isHierarchicalSort=true&filter.types=&filter.isShowFavourites=true&filter.isHidden=true&filter.includeSystemTasks=true&filter.isSystem=true&filter.batchStatus=filterPeriodbatchStatus_example&filter.sortField=filterPeriodsortField_example&filter.sortAsc=true&filter.groupBy=filterPeriodgroupBy_example&filter.lastRowNumber=789&filter.maxResults=56&filter.tenantID=56&filter.websiteID=56&filter.userID=56"
import org.openapitools.client.*;
import org.openapitools.client.auth.*;
import org.openapitools.client.model.*;
import org.openapitools.client.api.DefaultApi;

import java.io.File;
import java.util.*;

public class DefaultApiExample {
    public static void main(String[] args) {

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        array[Integer] filterPeriodwarehouseTypeIDs = ; // array[Integer] | 
        Integer filterPeriodexcludeProjectWarehousesIfProjectWarehouseID = 56; // Integer | Format - int32.
        Boolean filterPeriodincludeVirtual = true; // Boolean | 
        Boolean filterPeriodisProjectDestination = true; // Boolean | 
        Boolean filterPeriodisCustomerOwned = true; // Boolean | 
        Boolean filterPeriodmatchOnNameOnly = true; // Boolean | 
        array[Integer] filterPeriodstatuses = ; // array[Integer] | 
        array[String] filterPeriodstatusStrings = ; // array[String] | 
        array[String] filterPeriodstatus = ; // array[String] | 
        String filterPeriodsearchString = filterPeriodsearchString_example; // String | 
        Boolean filterPeriodsearchNameOnly = true; // Boolean | 
        String filterPeriodsearch = filterPeriodsearch_example; // String | 
        Date filterPeriodstartDate = 2013-10-20T19:20:30+01:00; // Date | Format - date-time (as date-time in RFC3339).
        Date filterPeriodendDate = 2013-10-20T19:20:30+01:00; // Date | Format - date-time (as date-time in RFC3339).
        String filterPerioddatePeriod = filterPerioddatePeriod_example; // String | 
        Boolean filterPeriodisExactMatch = true; // Boolean | 
        Boolean filterPeriodisGetBasicInfo = true; // Boolean | 
        Boolean filterPeriodincludeDeleted = true; // Boolean | 
        Boolean filterPeriodincludeLogs = true; // Boolean | 
        Integer filterPeriodignoreID = 56; // Integer | Format - int32.
        Integer filterPeriodparentID = 56; // Integer | Format - int32.
        Boolean filterPeriodgetCountOnly = true; // Boolean | 
        Integer filterPeriodtransactionTypeDatTypeID = 56; // Integer | Format - int32.
        Integer filterPeriodcategoryID = 56; // Integer | Format - int32.
        Integer filterPeriodadaptorID = 56; // Integer | Format - int32.
        array[Integer] filterPeriodcategoryIDs = ; // array[Integer] | 
        array[Integer] filterPeriodbrandIDs = ; // array[Integer] | 
        array[Integer] filterPeriodiDs = ; // array[Integer] | 
        array[String] filterPeriodgUIDs = ; // array[String] | 
        Integer filterPeriodlinkedSupplierID = 56; // Integer | Format - int32.
        Boolean filterPeriodisApprovedForPOS = true; // Boolean | 
        Boolean filterPeriodisApprovedForWeb = true; // Boolean | 
        Boolean filterPeriodisApprovedForService = true; // Boolean | 
        Integer filterPeriodiD = 56; // Integer | Format - int32.
        Boolean filterPeriodisHierarchicalSort = true; // Boolean | 
        array[String] filterPeriodtypes = ; // array[String] | 
        Boolean filterPeriodisShowFavourites = true; // Boolean | 
        Boolean filterPeriodisHidden = true; // Boolean | 
        Boolean filterPeriodincludeSystemTasks = true; // Boolean | 
        Boolean filterPeriodisSystem = true; // Boolean | 
        String filterPeriodbatchStatus = filterPeriodbatchStatus_example; // String | 
        String filterPeriodsortField = filterPeriodsortField_example; // String | 
        Boolean filterPeriodsortAsc = true; // Boolean | 
        String filterPeriodgroupBy = filterPeriodgroupBy_example; // String | 
        Long filterPeriodlastRowNumber = 789; // Long | Format - int64.
        Integer filterPeriodmaxResults = 56; // Integer | Format - int32.
        Integer filterPeriodtenantID = 56; // Integer | Format - int32.
        Integer filterPeriodwebsiteID = 56; // Integer | Format - int32.
        Integer filterPerioduserID = 56; // Integer | Format - int32.

        try {
            PagedActionResults_Warehouses_ result = apiInstance.warehouseSearchT(filterPeriodwarehouseTypeIDs, filterPeriodexcludeProjectWarehousesIfProjectWarehouseID, filterPeriodincludeVirtual, filterPeriodisProjectDestination, filterPeriodisCustomerOwned, filterPeriodmatchOnNameOnly, filterPeriodstatuses, filterPeriodstatusStrings, filterPeriodstatus, filterPeriodsearchString, filterPeriodsearchNameOnly, filterPeriodsearch, filterPeriodstartDate, filterPeriodendDate, filterPerioddatePeriod, filterPeriodisExactMatch, filterPeriodisGetBasicInfo, filterPeriodincludeDeleted, filterPeriodincludeLogs, filterPeriodignoreID, filterPeriodparentID, filterPeriodgetCountOnly, filterPeriodtransactionTypeDatTypeID, filterPeriodcategoryID, filterPeriodadaptorID, filterPeriodcategoryIDs, filterPeriodbrandIDs, filterPeriodiDs, filterPeriodgUIDs, filterPeriodlinkedSupplierID, filterPeriodisApprovedForPOS, filterPeriodisApprovedForWeb, filterPeriodisApprovedForService, filterPeriodiD, filterPeriodisHierarchicalSort, filterPeriodtypes, filterPeriodisShowFavourites, filterPeriodisHidden, filterPeriodincludeSystemTasks, filterPeriodisSystem, filterPeriodbatchStatus, filterPeriodsortField, filterPeriodsortAsc, filterPeriodgroupBy, filterPeriodlastRowNumber, filterPeriodmaxResults, filterPeriodtenantID, filterPeriodwebsiteID, filterPerioduserID);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#warehouseSearchT");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final array[Integer] filterPeriodwarehouseTypeIDs = new array[Integer](); // array[Integer] | 
final Integer filterPeriodexcludeProjectWarehousesIfProjectWarehouseID = new Integer(); // Integer | Format - int32.
final Boolean filterPeriodincludeVirtual = new Boolean(); // Boolean | 
final Boolean filterPeriodisProjectDestination = new Boolean(); // Boolean | 
final Boolean filterPeriodisCustomerOwned = new Boolean(); // Boolean | 
final Boolean filterPeriodmatchOnNameOnly = new Boolean(); // Boolean | 
final array[Integer] filterPeriodstatuses = new array[Integer](); // array[Integer] | 
final array[String] filterPeriodstatusStrings = new array[String](); // array[String] | 
final array[String] filterPeriodstatus = new array[String](); // array[String] | 
final String filterPeriodsearchString = new String(); // String | 
final Boolean filterPeriodsearchNameOnly = new Boolean(); // Boolean | 
final String filterPeriodsearch = new String(); // String | 
final Date filterPeriodstartDate = new Date(); // Date | Format - date-time (as date-time in RFC3339).
final Date filterPeriodendDate = new Date(); // Date | Format - date-time (as date-time in RFC3339).
final String filterPerioddatePeriod = new String(); // String | 
final Boolean filterPeriodisExactMatch = new Boolean(); // Boolean | 
final Boolean filterPeriodisGetBasicInfo = new Boolean(); // Boolean | 
final Boolean filterPeriodincludeDeleted = new Boolean(); // Boolean | 
final Boolean filterPeriodincludeLogs = new Boolean(); // Boolean | 
final Integer filterPeriodignoreID = new Integer(); // Integer | Format - int32.
final Integer filterPeriodparentID = new Integer(); // Integer | Format - int32.
final Boolean filterPeriodgetCountOnly = new Boolean(); // Boolean | 
final Integer filterPeriodtransactionTypeDatTypeID = new Integer(); // Integer | Format - int32.
final Integer filterPeriodcategoryID = new Integer(); // Integer | Format - int32.
final Integer filterPeriodadaptorID = new Integer(); // Integer | Format - int32.
final array[Integer] filterPeriodcategoryIDs = new array[Integer](); // array[Integer] | 
final array[Integer] filterPeriodbrandIDs = new array[Integer](); // array[Integer] | 
final array[Integer] filterPeriodiDs = new array[Integer](); // array[Integer] | 
final array[String] filterPeriodgUIDs = new array[String](); // array[String] | 
final Integer filterPeriodlinkedSupplierID = new Integer(); // Integer | Format - int32.
final Boolean filterPeriodisApprovedForPOS = new Boolean(); // Boolean | 
final Boolean filterPeriodisApprovedForWeb = new Boolean(); // Boolean | 
final Boolean filterPeriodisApprovedForService = new Boolean(); // Boolean | 
final Integer filterPeriodiD = new Integer(); // Integer | Format - int32.
final Boolean filterPeriodisHierarchicalSort = new Boolean(); // Boolean | 
final array[String] filterPeriodtypes = new array[String](); // array[String] | 
final Boolean filterPeriodisShowFavourites = new Boolean(); // Boolean | 
final Boolean filterPeriodisHidden = new Boolean(); // Boolean | 
final Boolean filterPeriodincludeSystemTasks = new Boolean(); // Boolean | 
final Boolean filterPeriodisSystem = new Boolean(); // Boolean | 
final String filterPeriodbatchStatus = new String(); // String | 
final String filterPeriodsortField = new String(); // String | 
final Boolean filterPeriodsortAsc = new Boolean(); // Boolean | 
final String filterPeriodgroupBy = new String(); // String | 
final Long filterPeriodlastRowNumber = new Long(); // Long | Format - int64.
final Integer filterPeriodmaxResults = new Integer(); // Integer | Format - int32.
final Integer filterPeriodtenantID = new Integer(); // Integer | Format - int32.
final Integer filterPeriodwebsiteID = new Integer(); // Integer | Format - int32.
final Integer filterPerioduserID = new Integer(); // Integer | Format - int32.

try {
    final result = await api_instance.warehouseSearchT(filterPeriodwarehouseTypeIDs, filterPeriodexcludeProjectWarehousesIfProjectWarehouseID, filterPeriodincludeVirtual, filterPeriodisProjectDestination, filterPeriodisCustomerOwned, filterPeriodmatchOnNameOnly, filterPeriodstatuses, filterPeriodstatusStrings, filterPeriodstatus, filterPeriodsearchString, filterPeriodsearchNameOnly, filterPeriodsearch, filterPeriodstartDate, filterPeriodendDate, filterPerioddatePeriod, filterPeriodisExactMatch, filterPeriodisGetBasicInfo, filterPeriodincludeDeleted, filterPeriodincludeLogs, filterPeriodignoreID, filterPeriodparentID, filterPeriodgetCountOnly, filterPeriodtransactionTypeDatTypeID, filterPeriodcategoryID, filterPeriodadaptorID, filterPeriodcategoryIDs, filterPeriodbrandIDs, filterPeriodiDs, filterPeriodgUIDs, filterPeriodlinkedSupplierID, filterPeriodisApprovedForPOS, filterPeriodisApprovedForWeb, filterPeriodisApprovedForService, filterPeriodiD, filterPeriodisHierarchicalSort, filterPeriodtypes, filterPeriodisShowFavourites, filterPeriodisHidden, filterPeriodincludeSystemTasks, filterPeriodisSystem, filterPeriodbatchStatus, filterPeriodsortField, filterPeriodsortAsc, filterPeriodgroupBy, filterPeriodlastRowNumber, filterPeriodmaxResults, filterPeriodtenantID, filterPeriodwebsiteID, filterPerioduserID);
    print(result);
} catch (e) {
    print('Exception when calling DefaultApi->warehouseSearchT: $e\n');
}

import org.openapitools.client.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        array[Integer] filterPeriodwarehouseTypeIDs = ; // array[Integer] | 
        Integer filterPeriodexcludeProjectWarehousesIfProjectWarehouseID = 56; // Integer | Format - int32.
        Boolean filterPeriodincludeVirtual = true; // Boolean | 
        Boolean filterPeriodisProjectDestination = true; // Boolean | 
        Boolean filterPeriodisCustomerOwned = true; // Boolean | 
        Boolean filterPeriodmatchOnNameOnly = true; // Boolean | 
        array[Integer] filterPeriodstatuses = ; // array[Integer] | 
        array[String] filterPeriodstatusStrings = ; // array[String] | 
        array[String] filterPeriodstatus = ; // array[String] | 
        String filterPeriodsearchString = filterPeriodsearchString_example; // String | 
        Boolean filterPeriodsearchNameOnly = true; // Boolean | 
        String filterPeriodsearch = filterPeriodsearch_example; // String | 
        Date filterPeriodstartDate = 2013-10-20T19:20:30+01:00; // Date | Format - date-time (as date-time in RFC3339).
        Date filterPeriodendDate = 2013-10-20T19:20:30+01:00; // Date | Format - date-time (as date-time in RFC3339).
        String filterPerioddatePeriod = filterPerioddatePeriod_example; // String | 
        Boolean filterPeriodisExactMatch = true; // Boolean | 
        Boolean filterPeriodisGetBasicInfo = true; // Boolean | 
        Boolean filterPeriodincludeDeleted = true; // Boolean | 
        Boolean filterPeriodincludeLogs = true; // Boolean | 
        Integer filterPeriodignoreID = 56; // Integer | Format - int32.
        Integer filterPeriodparentID = 56; // Integer | Format - int32.
        Boolean filterPeriodgetCountOnly = true; // Boolean | 
        Integer filterPeriodtransactionTypeDatTypeID = 56; // Integer | Format - int32.
        Integer filterPeriodcategoryID = 56; // Integer | Format - int32.
        Integer filterPeriodadaptorID = 56; // Integer | Format - int32.
        array[Integer] filterPeriodcategoryIDs = ; // array[Integer] | 
        array[Integer] filterPeriodbrandIDs = ; // array[Integer] | 
        array[Integer] filterPeriodiDs = ; // array[Integer] | 
        array[String] filterPeriodgUIDs = ; // array[String] | 
        Integer filterPeriodlinkedSupplierID = 56; // Integer | Format - int32.
        Boolean filterPeriodisApprovedForPOS = true; // Boolean | 
        Boolean filterPeriodisApprovedForWeb = true; // Boolean | 
        Boolean filterPeriodisApprovedForService = true; // Boolean | 
        Integer filterPeriodiD = 56; // Integer | Format - int32.
        Boolean filterPeriodisHierarchicalSort = true; // Boolean | 
        array[String] filterPeriodtypes = ; // array[String] | 
        Boolean filterPeriodisShowFavourites = true; // Boolean | 
        Boolean filterPeriodisHidden = true; // Boolean | 
        Boolean filterPeriodincludeSystemTasks = true; // Boolean | 
        Boolean filterPeriodisSystem = true; // Boolean | 
        String filterPeriodbatchStatus = filterPeriodbatchStatus_example; // String | 
        String filterPeriodsortField = filterPeriodsortField_example; // String | 
        Boolean filterPeriodsortAsc = true; // Boolean | 
        String filterPeriodgroupBy = filterPeriodgroupBy_example; // String | 
        Long filterPeriodlastRowNumber = 789; // Long | Format - int64.
        Integer filterPeriodmaxResults = 56; // Integer | Format - int32.
        Integer filterPeriodtenantID = 56; // Integer | Format - int32.
        Integer filterPeriodwebsiteID = 56; // Integer | Format - int32.
        Integer filterPerioduserID = 56; // Integer | Format - int32.

        try {
            PagedActionResults_Warehouses_ result = apiInstance.warehouseSearchT(filterPeriodwarehouseTypeIDs, filterPeriodexcludeProjectWarehousesIfProjectWarehouseID, filterPeriodincludeVirtual, filterPeriodisProjectDestination, filterPeriodisCustomerOwned, filterPeriodmatchOnNameOnly, filterPeriodstatuses, filterPeriodstatusStrings, filterPeriodstatus, filterPeriodsearchString, filterPeriodsearchNameOnly, filterPeriodsearch, filterPeriodstartDate, filterPeriodendDate, filterPerioddatePeriod, filterPeriodisExactMatch, filterPeriodisGetBasicInfo, filterPeriodincludeDeleted, filterPeriodincludeLogs, filterPeriodignoreID, filterPeriodparentID, filterPeriodgetCountOnly, filterPeriodtransactionTypeDatTypeID, filterPeriodcategoryID, filterPeriodadaptorID, filterPeriodcategoryIDs, filterPeriodbrandIDs, filterPeriodiDs, filterPeriodgUIDs, filterPeriodlinkedSupplierID, filterPeriodisApprovedForPOS, filterPeriodisApprovedForWeb, filterPeriodisApprovedForService, filterPeriodiD, filterPeriodisHierarchicalSort, filterPeriodtypes, filterPeriodisShowFavourites, filterPeriodisHidden, filterPeriodincludeSystemTasks, filterPeriodisSystem, filterPeriodbatchStatus, filterPeriodsortField, filterPeriodsortAsc, filterPeriodgroupBy, filterPeriodlastRowNumber, filterPeriodmaxResults, filterPeriodtenantID, filterPeriodwebsiteID, filterPerioduserID);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#warehouseSearchT");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
array[Integer] *filterPeriodwarehouseTypeIDs = ; //  (optional) (default to null)
Integer *filterPeriodexcludeProjectWarehousesIfProjectWarehouseID = 56; // Format - int32. (optional) (default to null)
Boolean *filterPeriodincludeVirtual = true; //  (optional) (default to null)
Boolean *filterPeriodisProjectDestination = true; //  (optional) (default to null)
Boolean *filterPeriodisCustomerOwned = true; //  (optional) (default to null)
Boolean *filterPeriodmatchOnNameOnly = true; //  (optional) (default to null)
array[Integer] *filterPeriodstatuses = ; //  (optional) (default to null)
array[String] *filterPeriodstatusStrings = ; //  (optional) (default to null)
array[String] *filterPeriodstatus = ; //  (optional) (default to null)
String *filterPeriodsearchString = filterPeriodsearchString_example; //  (optional) (default to null)
Boolean *filterPeriodsearchNameOnly = true; //  (optional) (default to null)
String *filterPeriodsearch = filterPeriodsearch_example; //  (optional) (default to null)
Date *filterPeriodstartDate = 2013-10-20T19:20:30+01:00; // Format - date-time (as date-time in RFC3339). (optional) (default to null)
Date *filterPeriodendDate = 2013-10-20T19:20:30+01:00; // Format - date-time (as date-time in RFC3339). (optional) (default to null)
String *filterPerioddatePeriod = filterPerioddatePeriod_example; //  (optional) (default to null)
Boolean *filterPeriodisExactMatch = true; //  (optional) (default to null)
Boolean *filterPeriodisGetBasicInfo = true; //  (optional) (default to null)
Boolean *filterPeriodincludeDeleted = true; //  (optional) (default to null)
Boolean *filterPeriodincludeLogs = true; //  (optional) (default to null)
Integer *filterPeriodignoreID = 56; // Format - int32. (optional) (default to null)
Integer *filterPeriodparentID = 56; // Format - int32. (optional) (default to null)
Boolean *filterPeriodgetCountOnly = true; //  (optional) (default to null)
Integer *filterPeriodtransactionTypeDatTypeID = 56; // Format - int32. (optional) (default to null)
Integer *filterPeriodcategoryID = 56; // Format - int32. (optional) (default to null)
Integer *filterPeriodadaptorID = 56; // Format - int32. (optional) (default to null)
array[Integer] *filterPeriodcategoryIDs = ; //  (optional) (default to null)
array[Integer] *filterPeriodbrandIDs = ; //  (optional) (default to null)
array[Integer] *filterPeriodiDs = ; //  (optional) (default to null)
array[String] *filterPeriodgUIDs = ; //  (optional) (default to null)
Integer *filterPeriodlinkedSupplierID = 56; // Format - int32. (optional) (default to null)
Boolean *filterPeriodisApprovedForPOS = true; //  (optional) (default to null)
Boolean *filterPeriodisApprovedForWeb = true; //  (optional) (default to null)
Boolean *filterPeriodisApprovedForService = true; //  (optional) (default to null)
Integer *filterPeriodiD = 56; // Format - int32. (optional) (default to null)
Boolean *filterPeriodisHierarchicalSort = true; //  (optional) (default to null)
array[String] *filterPeriodtypes = ; //  (optional) (default to null)
Boolean *filterPeriodisShowFavourites = true; //  (optional) (default to null)
Boolean *filterPeriodisHidden = true; //  (optional) (default to null)
Boolean *filterPeriodincludeSystemTasks = true; //  (optional) (default to null)
Boolean *filterPeriodisSystem = true; //  (optional) (default to null)
String *filterPeriodbatchStatus = filterPeriodbatchStatus_example; //  (optional) (default to null)
String *filterPeriodsortField = filterPeriodsortField_example; //  (optional) (default to null)
Boolean *filterPeriodsortAsc = true; //  (optional) (default to null)
String *filterPeriodgroupBy = filterPeriodgroupBy_example; //  (optional) (default to null)
Long *filterPeriodlastRowNumber = 789; // Format - int64. (optional) (default to null)
Integer *filterPeriodmaxResults = 56; // Format - int32. (optional) (default to null)
Integer *filterPeriodtenantID = 56; // Format - int32. (optional) (default to null)
Integer *filterPeriodwebsiteID = 56; // Format - int32. (optional) (default to null)
Integer *filterPerioduserID = 56; // Format - int32. (optional) (default to null)

// Warehouse_SearchT
[apiInstance warehouseSearchTWith:filterPeriodwarehouseTypeIDs
    filterPeriodexcludeProjectWarehousesIfProjectWarehouseID:filterPeriodexcludeProjectWarehousesIfProjectWarehouseID
    filterPeriodincludeVirtual:filterPeriodincludeVirtual
    filterPeriodisProjectDestination:filterPeriodisProjectDestination
    filterPeriodisCustomerOwned:filterPeriodisCustomerOwned
    filterPeriodmatchOnNameOnly:filterPeriodmatchOnNameOnly
    filterPeriodstatuses:filterPeriodstatuses
    filterPeriodstatusStrings:filterPeriodstatusStrings
    filterPeriodstatus:filterPeriodstatus
    filterPeriodsearchString:filterPeriodsearchString
    filterPeriodsearchNameOnly:filterPeriodsearchNameOnly
    filterPeriodsearch:filterPeriodsearch
    filterPeriodstartDate:filterPeriodstartDate
    filterPeriodendDate:filterPeriodendDate
    filterPerioddatePeriod:filterPerioddatePeriod
    filterPeriodisExactMatch:filterPeriodisExactMatch
    filterPeriodisGetBasicInfo:filterPeriodisGetBasicInfo
    filterPeriodincludeDeleted:filterPeriodincludeDeleted
    filterPeriodincludeLogs:filterPeriodincludeLogs
    filterPeriodignoreID:filterPeriodignoreID
    filterPeriodparentID:filterPeriodparentID
    filterPeriodgetCountOnly:filterPeriodgetCountOnly
    filterPeriodtransactionTypeDatTypeID:filterPeriodtransactionTypeDatTypeID
    filterPeriodcategoryID:filterPeriodcategoryID
    filterPeriodadaptorID:filterPeriodadaptorID
    filterPeriodcategoryIDs:filterPeriodcategoryIDs
    filterPeriodbrandIDs:filterPeriodbrandIDs
    filterPeriodiDs:filterPeriodiDs
    filterPeriodgUIDs:filterPeriodgUIDs
    filterPeriodlinkedSupplierID:filterPeriodlinkedSupplierID
    filterPeriodisApprovedForPOS:filterPeriodisApprovedForPOS
    filterPeriodisApprovedForWeb:filterPeriodisApprovedForWeb
    filterPeriodisApprovedForService:filterPeriodisApprovedForService
    filterPeriodiD:filterPeriodiD
    filterPeriodisHierarchicalSort:filterPeriodisHierarchicalSort
    filterPeriodtypes:filterPeriodtypes
    filterPeriodisShowFavourites:filterPeriodisShowFavourites
    filterPeriodisHidden:filterPeriodisHidden
    filterPeriodincludeSystemTasks:filterPeriodincludeSystemTasks
    filterPeriodisSystem:filterPeriodisSystem
    filterPeriodbatchStatus:filterPeriodbatchStatus
    filterPeriodsortField:filterPeriodsortField
    filterPeriodsortAsc:filterPeriodsortAsc
    filterPeriodgroupBy:filterPeriodgroupBy
    filterPeriodlastRowNumber:filterPeriodlastRowNumber
    filterPeriodmaxResults:filterPeriodmaxResults
    filterPeriodtenantID:filterPeriodtenantID
    filterPeriodwebsiteID:filterPeriodwebsiteID
    filterPerioduserID:filterPerioduserID
              completionHandler: ^(PagedActionResults_Warehouses_ output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var AsServerApiWarehouse = require('as_server_api_warehouse');

// Create an instance of the API class
var api = new AsServerApiWarehouse.DefaultApi()
var opts = {
  'filterPeriodwarehouseTypeIDs': , // {array[Integer]} 
  'filterPeriodexcludeProjectWarehousesIfProjectWarehouseID': 56, // {Integer} Format - int32.
  'filterPeriodincludeVirtual': true, // {Boolean} 
  'filterPeriodisProjectDestination': true, // {Boolean} 
  'filterPeriodisCustomerOwned': true, // {Boolean} 
  'filterPeriodmatchOnNameOnly': true, // {Boolean} 
  'filterPeriodstatuses': , // {array[Integer]} 
  'filterPeriodstatusStrings': , // {array[String]} 
  'filterPeriodstatus': , // {array[String]} 
  'filterPeriodsearchString': filterPeriodsearchString_example, // {String} 
  'filterPeriodsearchNameOnly': true, // {Boolean} 
  'filterPeriodsearch': filterPeriodsearch_example, // {String} 
  'filterPeriodstartDate': 2013-10-20T19:20:30+01:00, // {Date} Format - date-time (as date-time in RFC3339).
  'filterPeriodendDate': 2013-10-20T19:20:30+01:00, // {Date} Format - date-time (as date-time in RFC3339).
  'filterPerioddatePeriod': filterPerioddatePeriod_example, // {String} 
  'filterPeriodisExactMatch': true, // {Boolean} 
  'filterPeriodisGetBasicInfo': true, // {Boolean} 
  'filterPeriodincludeDeleted': true, // {Boolean} 
  'filterPeriodincludeLogs': true, // {Boolean} 
  'filterPeriodignoreID': 56, // {Integer} Format - int32.
  'filterPeriodparentID': 56, // {Integer} Format - int32.
  'filterPeriodgetCountOnly': true, // {Boolean} 
  'filterPeriodtransactionTypeDatTypeID': 56, // {Integer} Format - int32.
  'filterPeriodcategoryID': 56, // {Integer} Format - int32.
  'filterPeriodadaptorID': 56, // {Integer} Format - int32.
  'filterPeriodcategoryIDs': , // {array[Integer]} 
  'filterPeriodbrandIDs': , // {array[Integer]} 
  'filterPeriodiDs': , // {array[Integer]} 
  'filterPeriodgUIDs': , // {array[String]} 
  'filterPeriodlinkedSupplierID': 56, // {Integer} Format - int32.
  'filterPeriodisApprovedForPOS': true, // {Boolean} 
  'filterPeriodisApprovedForWeb': true, // {Boolean} 
  'filterPeriodisApprovedForService': true, // {Boolean} 
  'filterPeriodiD': 56, // {Integer} Format - int32.
  'filterPeriodisHierarchicalSort': true, // {Boolean} 
  'filterPeriodtypes': , // {array[String]} 
  'filterPeriodisShowFavourites': true, // {Boolean} 
  'filterPeriodisHidden': true, // {Boolean} 
  'filterPeriodincludeSystemTasks': true, // {Boolean} 
  'filterPeriodisSystem': true, // {Boolean} 
  'filterPeriodbatchStatus': filterPeriodbatchStatus_example, // {String} 
  'filterPeriodsortField': filterPeriodsortField_example, // {String} 
  'filterPeriodsortAsc': true, // {Boolean} 
  'filterPeriodgroupBy': filterPeriodgroupBy_example, // {String} 
  'filterPeriodlastRowNumber': 789, // {Long} Format - int64.
  'filterPeriodmaxResults': 56, // {Integer} Format - int32.
  'filterPeriodtenantID': 56, // {Integer} Format - int32.
  'filterPeriodwebsiteID': 56, // {Integer} Format - int32.
  'filterPerioduserID': 56 // {Integer} Format - int32.
};

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.warehouseSearchT(opts, callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

namespace Example
{
    public class warehouseSearchTExample
    {
        public void main()
        {

            // Create an instance of the API class
            var apiInstance = new DefaultApi();
            var filterPeriodwarehouseTypeIDs = new array[Integer](); // array[Integer] |  (optional)  (default to null)
            var filterPeriodexcludeProjectWarehousesIfProjectWarehouseID = 56;  // Integer | Format - int32. (optional)  (default to null)
            var filterPeriodincludeVirtual = true;  // Boolean |  (optional)  (default to null)
            var filterPeriodisProjectDestination = true;  // Boolean |  (optional)  (default to null)
            var filterPeriodisCustomerOwned = true;  // Boolean |  (optional)  (default to null)
            var filterPeriodmatchOnNameOnly = true;  // Boolean |  (optional)  (default to null)
            var filterPeriodstatuses = new array[Integer](); // array[Integer] |  (optional)  (default to null)
            var filterPeriodstatusStrings = new array[String](); // array[String] |  (optional)  (default to null)
            var filterPeriodstatus = new array[String](); // array[String] |  (optional)  (default to null)
            var filterPeriodsearchString = filterPeriodsearchString_example;  // String |  (optional)  (default to null)
            var filterPeriodsearchNameOnly = true;  // Boolean |  (optional)  (default to null)
            var filterPeriodsearch = filterPeriodsearch_example;  // String |  (optional)  (default to null)
            var filterPeriodstartDate = 2013-10-20T19:20:30+01:00;  // Date | Format - date-time (as date-time in RFC3339). (optional)  (default to null)
            var filterPeriodendDate = 2013-10-20T19:20:30+01:00;  // Date | Format - date-time (as date-time in RFC3339). (optional)  (default to null)
            var filterPerioddatePeriod = filterPerioddatePeriod_example;  // String |  (optional)  (default to null)
            var filterPeriodisExactMatch = true;  // Boolean |  (optional)  (default to null)
            var filterPeriodisGetBasicInfo = true;  // Boolean |  (optional)  (default to null)
            var filterPeriodincludeDeleted = true;  // Boolean |  (optional)  (default to null)
            var filterPeriodincludeLogs = true;  // Boolean |  (optional)  (default to null)
            var filterPeriodignoreID = 56;  // Integer | Format - int32. (optional)  (default to null)
            var filterPeriodparentID = 56;  // Integer | Format - int32. (optional)  (default to null)
            var filterPeriodgetCountOnly = true;  // Boolean |  (optional)  (default to null)
            var filterPeriodtransactionTypeDatTypeID = 56;  // Integer | Format - int32. (optional)  (default to null)
            var filterPeriodcategoryID = 56;  // Integer | Format - int32. (optional)  (default to null)
            var filterPeriodadaptorID = 56;  // Integer | Format - int32. (optional)  (default to null)
            var filterPeriodcategoryIDs = new array[Integer](); // array[Integer] |  (optional)  (default to null)
            var filterPeriodbrandIDs = new array[Integer](); // array[Integer] |  (optional)  (default to null)
            var filterPeriodiDs = new array[Integer](); // array[Integer] |  (optional)  (default to null)
            var filterPeriodgUIDs = new array[String](); // array[String] |  (optional)  (default to null)
            var filterPeriodlinkedSupplierID = 56;  // Integer | Format - int32. (optional)  (default to null)
            var filterPeriodisApprovedForPOS = true;  // Boolean |  (optional)  (default to null)
            var filterPeriodisApprovedForWeb = true;  // Boolean |  (optional)  (default to null)
            var filterPeriodisApprovedForService = true;  // Boolean |  (optional)  (default to null)
            var filterPeriodiD = 56;  // Integer | Format - int32. (optional)  (default to null)
            var filterPeriodisHierarchicalSort = true;  // Boolean |  (optional)  (default to null)
            var filterPeriodtypes = new array[String](); // array[String] |  (optional)  (default to null)
            var filterPeriodisShowFavourites = true;  // Boolean |  (optional)  (default to null)
            var filterPeriodisHidden = true;  // Boolean |  (optional)  (default to null)
            var filterPeriodincludeSystemTasks = true;  // Boolean |  (optional)  (default to null)
            var filterPeriodisSystem = true;  // Boolean |  (optional)  (default to null)
            var filterPeriodbatchStatus = filterPeriodbatchStatus_example;  // String |  (optional)  (default to null)
            var filterPeriodsortField = filterPeriodsortField_example;  // String |  (optional)  (default to null)
            var filterPeriodsortAsc = true;  // Boolean |  (optional)  (default to null)
            var filterPeriodgroupBy = filterPeriodgroupBy_example;  // String |  (optional)  (default to null)
            var filterPeriodlastRowNumber = 789;  // Long | Format - int64. (optional)  (default to null)
            var filterPeriodmaxResults = 56;  // Integer | Format - int32. (optional)  (default to null)
            var filterPeriodtenantID = 56;  // Integer | Format - int32. (optional)  (default to null)
            var filterPeriodwebsiteID = 56;  // Integer | Format - int32. (optional)  (default to null)
            var filterPerioduserID = 56;  // Integer | Format - int32. (optional)  (default to null)

            try {
                // Warehouse_SearchT
                PagedActionResults_Warehouses_ result = apiInstance.warehouseSearchT(filterPeriodwarehouseTypeIDs, filterPeriodexcludeProjectWarehousesIfProjectWarehouseID, filterPeriodincludeVirtual, filterPeriodisProjectDestination, filterPeriodisCustomerOwned, filterPeriodmatchOnNameOnly, filterPeriodstatuses, filterPeriodstatusStrings, filterPeriodstatus, filterPeriodsearchString, filterPeriodsearchNameOnly, filterPeriodsearch, filterPeriodstartDate, filterPeriodendDate, filterPerioddatePeriod, filterPeriodisExactMatch, filterPeriodisGetBasicInfo, filterPeriodincludeDeleted, filterPeriodincludeLogs, filterPeriodignoreID, filterPeriodparentID, filterPeriodgetCountOnly, filterPeriodtransactionTypeDatTypeID, filterPeriodcategoryID, filterPeriodadaptorID, filterPeriodcategoryIDs, filterPeriodbrandIDs, filterPeriodiDs, filterPeriodgUIDs, filterPeriodlinkedSupplierID, filterPeriodisApprovedForPOS, filterPeriodisApprovedForWeb, filterPeriodisApprovedForService, filterPeriodiD, filterPeriodisHierarchicalSort, filterPeriodtypes, filterPeriodisShowFavourites, filterPeriodisHidden, filterPeriodincludeSystemTasks, filterPeriodisSystem, filterPeriodbatchStatus, filterPeriodsortField, filterPeriodsortAsc, filterPeriodgroupBy, filterPeriodlastRowNumber, filterPeriodmaxResults, filterPeriodtenantID, filterPeriodwebsiteID, filterPerioduserID);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.warehouseSearchT: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$filterPeriodwarehouseTypeIDs = ; // array[Integer] | 
$filterPeriodexcludeProjectWarehousesIfProjectWarehouseID = 56; // Integer | Format - int32.
$filterPeriodincludeVirtual = true; // Boolean | 
$filterPeriodisProjectDestination = true; // Boolean | 
$filterPeriodisCustomerOwned = true; // Boolean | 
$filterPeriodmatchOnNameOnly = true; // Boolean | 
$filterPeriodstatuses = ; // array[Integer] | 
$filterPeriodstatusStrings = ; // array[String] | 
$filterPeriodstatus = ; // array[String] | 
$filterPeriodsearchString = filterPeriodsearchString_example; // String | 
$filterPeriodsearchNameOnly = true; // Boolean | 
$filterPeriodsearch = filterPeriodsearch_example; // String | 
$filterPeriodstartDate = 2013-10-20T19:20:30+01:00; // Date | Format - date-time (as date-time in RFC3339).
$filterPeriodendDate = 2013-10-20T19:20:30+01:00; // Date | Format - date-time (as date-time in RFC3339).
$filterPerioddatePeriod = filterPerioddatePeriod_example; // String | 
$filterPeriodisExactMatch = true; // Boolean | 
$filterPeriodisGetBasicInfo = true; // Boolean | 
$filterPeriodincludeDeleted = true; // Boolean | 
$filterPeriodincludeLogs = true; // Boolean | 
$filterPeriodignoreID = 56; // Integer | Format - int32.
$filterPeriodparentID = 56; // Integer | Format - int32.
$filterPeriodgetCountOnly = true; // Boolean | 
$filterPeriodtransactionTypeDatTypeID = 56; // Integer | Format - int32.
$filterPeriodcategoryID = 56; // Integer | Format - int32.
$filterPeriodadaptorID = 56; // Integer | Format - int32.
$filterPeriodcategoryIDs = ; // array[Integer] | 
$filterPeriodbrandIDs = ; // array[Integer] | 
$filterPeriodiDs = ; // array[Integer] | 
$filterPeriodgUIDs = ; // array[String] | 
$filterPeriodlinkedSupplierID = 56; // Integer | Format - int32.
$filterPeriodisApprovedForPOS = true; // Boolean | 
$filterPeriodisApprovedForWeb = true; // Boolean | 
$filterPeriodisApprovedForService = true; // Boolean | 
$filterPeriodiD = 56; // Integer | Format - int32.
$filterPeriodisHierarchicalSort = true; // Boolean | 
$filterPeriodtypes = ; // array[String] | 
$filterPeriodisShowFavourites = true; // Boolean | 
$filterPeriodisHidden = true; // Boolean | 
$filterPeriodincludeSystemTasks = true; // Boolean | 
$filterPeriodisSystem = true; // Boolean | 
$filterPeriodbatchStatus = filterPeriodbatchStatus_example; // String | 
$filterPeriodsortField = filterPeriodsortField_example; // String | 
$filterPeriodsortAsc = true; // Boolean | 
$filterPeriodgroupBy = filterPeriodgroupBy_example; // String | 
$filterPeriodlastRowNumber = 789; // Long | Format - int64.
$filterPeriodmaxResults = 56; // Integer | Format - int32.
$filterPeriodtenantID = 56; // Integer | Format - int32.
$filterPeriodwebsiteID = 56; // Integer | Format - int32.
$filterPerioduserID = 56; // Integer | Format - int32.

try {
    $result = $api_instance->warehouseSearchT($filterPeriodwarehouseTypeIDs, $filterPeriodexcludeProjectWarehousesIfProjectWarehouseID, $filterPeriodincludeVirtual, $filterPeriodisProjectDestination, $filterPeriodisCustomerOwned, $filterPeriodmatchOnNameOnly, $filterPeriodstatuses, $filterPeriodstatusStrings, $filterPeriodstatus, $filterPeriodsearchString, $filterPeriodsearchNameOnly, $filterPeriodsearch, $filterPeriodstartDate, $filterPeriodendDate, $filterPerioddatePeriod, $filterPeriodisExactMatch, $filterPeriodisGetBasicInfo, $filterPeriodincludeDeleted, $filterPeriodincludeLogs, $filterPeriodignoreID, $filterPeriodparentID, $filterPeriodgetCountOnly, $filterPeriodtransactionTypeDatTypeID, $filterPeriodcategoryID, $filterPeriodadaptorID, $filterPeriodcategoryIDs, $filterPeriodbrandIDs, $filterPeriodiDs, $filterPeriodgUIDs, $filterPeriodlinkedSupplierID, $filterPeriodisApprovedForPOS, $filterPeriodisApprovedForWeb, $filterPeriodisApprovedForService, $filterPeriodiD, $filterPeriodisHierarchicalSort, $filterPeriodtypes, $filterPeriodisShowFavourites, $filterPeriodisHidden, $filterPeriodincludeSystemTasks, $filterPeriodisSystem, $filterPeriodbatchStatus, $filterPeriodsortField, $filterPeriodsortAsc, $filterPeriodgroupBy, $filterPeriodlastRowNumber, $filterPeriodmaxResults, $filterPeriodtenantID, $filterPeriodwebsiteID, $filterPerioduserID);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->warehouseSearchT: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::DefaultApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();
my $filterPeriodwarehouseTypeIDs = []; # array[Integer] | 
my $filterPeriodexcludeProjectWarehousesIfProjectWarehouseID = 56; # Integer | Format - int32.
my $filterPeriodincludeVirtual = true; # Boolean | 
my $filterPeriodisProjectDestination = true; # Boolean | 
my $filterPeriodisCustomerOwned = true; # Boolean | 
my $filterPeriodmatchOnNameOnly = true; # Boolean | 
my $filterPeriodstatuses = []; # array[Integer] | 
my $filterPeriodstatusStrings = []; # array[String] | 
my $filterPeriodstatus = []; # array[String] | 
my $filterPeriodsearchString = filterPeriodsearchString_example; # String | 
my $filterPeriodsearchNameOnly = true; # Boolean | 
my $filterPeriodsearch = filterPeriodsearch_example; # String | 
my $filterPeriodstartDate = 2013-10-20T19:20:30+01:00; # Date | Format - date-time (as date-time in RFC3339).
my $filterPeriodendDate = 2013-10-20T19:20:30+01:00; # Date | Format - date-time (as date-time in RFC3339).
my $filterPerioddatePeriod = filterPerioddatePeriod_example; # String | 
my $filterPeriodisExactMatch = true; # Boolean | 
my $filterPeriodisGetBasicInfo = true; # Boolean | 
my $filterPeriodincludeDeleted = true; # Boolean | 
my $filterPeriodincludeLogs = true; # Boolean | 
my $filterPeriodignoreID = 56; # Integer | Format - int32.
my $filterPeriodparentID = 56; # Integer | Format - int32.
my $filterPeriodgetCountOnly = true; # Boolean | 
my $filterPeriodtransactionTypeDatTypeID = 56; # Integer | Format - int32.
my $filterPeriodcategoryID = 56; # Integer | Format - int32.
my $filterPeriodadaptorID = 56; # Integer | Format - int32.
my $filterPeriodcategoryIDs = []; # array[Integer] | 
my $filterPeriodbrandIDs = []; # array[Integer] | 
my $filterPeriodiDs = []; # array[Integer] | 
my $filterPeriodgUIDs = []; # array[String] | 
my $filterPeriodlinkedSupplierID = 56; # Integer | Format - int32.
my $filterPeriodisApprovedForPOS = true; # Boolean | 
my $filterPeriodisApprovedForWeb = true; # Boolean | 
my $filterPeriodisApprovedForService = true; # Boolean | 
my $filterPeriodiD = 56; # Integer | Format - int32.
my $filterPeriodisHierarchicalSort = true; # Boolean | 
my $filterPeriodtypes = []; # array[String] | 
my $filterPeriodisShowFavourites = true; # Boolean | 
my $filterPeriodisHidden = true; # Boolean | 
my $filterPeriodincludeSystemTasks = true; # Boolean | 
my $filterPeriodisSystem = true; # Boolean | 
my $filterPeriodbatchStatus = filterPeriodbatchStatus_example; # String | 
my $filterPeriodsortField = filterPeriodsortField_example; # String | 
my $filterPeriodsortAsc = true; # Boolean | 
my $filterPeriodgroupBy = filterPeriodgroupBy_example; # String | 
my $filterPeriodlastRowNumber = 789; # Long | Format - int64.
my $filterPeriodmaxResults = 56; # Integer | Format - int32.
my $filterPeriodtenantID = 56; # Integer | Format - int32.
my $filterPeriodwebsiteID = 56; # Integer | Format - int32.
my $filterPerioduserID = 56; # Integer | Format - int32.

eval {
    my $result = $api_instance->warehouseSearchT(filterPeriodwarehouseTypeIDs => $filterPeriodwarehouseTypeIDs, filterPeriodexcludeProjectWarehousesIfProjectWarehouseID => $filterPeriodexcludeProjectWarehousesIfProjectWarehouseID, filterPeriodincludeVirtual => $filterPeriodincludeVirtual, filterPeriodisProjectDestination => $filterPeriodisProjectDestination, filterPeriodisCustomerOwned => $filterPeriodisCustomerOwned, filterPeriodmatchOnNameOnly => $filterPeriodmatchOnNameOnly, filterPeriodstatuses => $filterPeriodstatuses, filterPeriodstatusStrings => $filterPeriodstatusStrings, filterPeriodstatus => $filterPeriodstatus, filterPeriodsearchString => $filterPeriodsearchString, filterPeriodsearchNameOnly => $filterPeriodsearchNameOnly, filterPeriodsearch => $filterPeriodsearch, filterPeriodstartDate => $filterPeriodstartDate, filterPeriodendDate => $filterPeriodendDate, filterPerioddatePeriod => $filterPerioddatePeriod, filterPeriodisExactMatch => $filterPeriodisExactMatch, filterPeriodisGetBasicInfo => $filterPeriodisGetBasicInfo, filterPeriodincludeDeleted => $filterPeriodincludeDeleted, filterPeriodincludeLogs => $filterPeriodincludeLogs, filterPeriodignoreID => $filterPeriodignoreID, filterPeriodparentID => $filterPeriodparentID, filterPeriodgetCountOnly => $filterPeriodgetCountOnly, filterPeriodtransactionTypeDatTypeID => $filterPeriodtransactionTypeDatTypeID, filterPeriodcategoryID => $filterPeriodcategoryID, filterPeriodadaptorID => $filterPeriodadaptorID, filterPeriodcategoryIDs => $filterPeriodcategoryIDs, filterPeriodbrandIDs => $filterPeriodbrandIDs, filterPeriodiDs => $filterPeriodiDs, filterPeriodgUIDs => $filterPeriodgUIDs, filterPeriodlinkedSupplierID => $filterPeriodlinkedSupplierID, filterPeriodisApprovedForPOS => $filterPeriodisApprovedForPOS, filterPeriodisApprovedForWeb => $filterPeriodisApprovedForWeb, filterPeriodisApprovedForService => $filterPeriodisApprovedForService, filterPeriodiD => $filterPeriodiD, filterPeriodisHierarchicalSort => $filterPeriodisHierarchicalSort, filterPeriodtypes => $filterPeriodtypes, filterPeriodisShowFavourites => $filterPeriodisShowFavourites, filterPeriodisHidden => $filterPeriodisHidden, filterPeriodincludeSystemTasks => $filterPeriodincludeSystemTasks, filterPeriodisSystem => $filterPeriodisSystem, filterPeriodbatchStatus => $filterPeriodbatchStatus, filterPeriodsortField => $filterPeriodsortField, filterPeriodsortAsc => $filterPeriodsortAsc, filterPeriodgroupBy => $filterPeriodgroupBy, filterPeriodlastRowNumber => $filterPeriodlastRowNumber, filterPeriodmaxResults => $filterPeriodmaxResults, filterPeriodtenantID => $filterPeriodtenantID, filterPeriodwebsiteID => $filterPeriodwebsiteID, filterPerioduserID => $filterPerioduserID);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->warehouseSearchT: $@\n";
}
from __future__ import print_statement
import time
import openapi_client
from openapi_client.rest import ApiException
from pprint import pprint

# Create an instance of the API class
api_instance = openapi_client.DefaultApi()
filterPeriodwarehouseTypeIDs =  # array[Integer] |  (optional) (default to null)
filterPeriodexcludeProjectWarehousesIfProjectWarehouseID = 56 # Integer | Format - int32. (optional) (default to null)
filterPeriodincludeVirtual = true # Boolean |  (optional) (default to null)
filterPeriodisProjectDestination = true # Boolean |  (optional) (default to null)
filterPeriodisCustomerOwned = true # Boolean |  (optional) (default to null)
filterPeriodmatchOnNameOnly = true # Boolean |  (optional) (default to null)
filterPeriodstatuses =  # array[Integer] |  (optional) (default to null)
filterPeriodstatusStrings =  # array[String] |  (optional) (default to null)
filterPeriodstatus =  # array[String] |  (optional) (default to null)
filterPeriodsearchString = filterPeriodsearchString_example # String |  (optional) (default to null)
filterPeriodsearchNameOnly = true # Boolean |  (optional) (default to null)
filterPeriodsearch = filterPeriodsearch_example # String |  (optional) (default to null)
filterPeriodstartDate = 2013-10-20T19:20:30+01:00 # Date | Format - date-time (as date-time in RFC3339). (optional) (default to null)
filterPeriodendDate = 2013-10-20T19:20:30+01:00 # Date | Format - date-time (as date-time in RFC3339). (optional) (default to null)
filterPerioddatePeriod = filterPerioddatePeriod_example # String |  (optional) (default to null)
filterPeriodisExactMatch = true # Boolean |  (optional) (default to null)
filterPeriodisGetBasicInfo = true # Boolean |  (optional) (default to null)
filterPeriodincludeDeleted = true # Boolean |  (optional) (default to null)
filterPeriodincludeLogs = true # Boolean |  (optional) (default to null)
filterPeriodignoreID = 56 # Integer | Format - int32. (optional) (default to null)
filterPeriodparentID = 56 # Integer | Format - int32. (optional) (default to null)
filterPeriodgetCountOnly = true # Boolean |  (optional) (default to null)
filterPeriodtransactionTypeDatTypeID = 56 # Integer | Format - int32. (optional) (default to null)
filterPeriodcategoryID = 56 # Integer | Format - int32. (optional) (default to null)
filterPeriodadaptorID = 56 # Integer | Format - int32. (optional) (default to null)
filterPeriodcategoryIDs =  # array[Integer] |  (optional) (default to null)
filterPeriodbrandIDs =  # array[Integer] |  (optional) (default to null)
filterPeriodiDs =  # array[Integer] |  (optional) (default to null)
filterPeriodgUIDs =  # array[String] |  (optional) (default to null)
filterPeriodlinkedSupplierID = 56 # Integer | Format - int32. (optional) (default to null)
filterPeriodisApprovedForPOS = true # Boolean |  (optional) (default to null)
filterPeriodisApprovedForWeb = true # Boolean |  (optional) (default to null)
filterPeriodisApprovedForService = true # Boolean |  (optional) (default to null)
filterPeriodiD = 56 # Integer | Format - int32. (optional) (default to null)
filterPeriodisHierarchicalSort = true # Boolean |  (optional) (default to null)
filterPeriodtypes =  # array[String] |  (optional) (default to null)
filterPeriodisShowFavourites = true # Boolean |  (optional) (default to null)
filterPeriodisHidden = true # Boolean |  (optional) (default to null)
filterPeriodincludeSystemTasks = true # Boolean |  (optional) (default to null)
filterPeriodisSystem = true # Boolean |  (optional) (default to null)
filterPeriodbatchStatus = filterPeriodbatchStatus_example # String |  (optional) (default to null)
filterPeriodsortField = filterPeriodsortField_example # String |  (optional) (default to null)
filterPeriodsortAsc = true # Boolean |  (optional) (default to null)
filterPeriodgroupBy = filterPeriodgroupBy_example # String |  (optional) (default to null)
filterPeriodlastRowNumber = 789 # Long | Format - int64. (optional) (default to null)
filterPeriodmaxResults = 56 # Integer | Format - int32. (optional) (default to null)
filterPeriodtenantID = 56 # Integer | Format - int32. (optional) (default to null)
filterPeriodwebsiteID = 56 # Integer | Format - int32. (optional) (default to null)
filterPerioduserID = 56 # Integer | Format - int32. (optional) (default to null)

try:
    # Warehouse_SearchT
    api_response = api_instance.warehouse_search_t(filterPeriodwarehouseTypeIDs=filterPeriodwarehouseTypeIDs, filterPeriodexcludeProjectWarehousesIfProjectWarehouseID=filterPeriodexcludeProjectWarehousesIfProjectWarehouseID, filterPeriodincludeVirtual=filterPeriodincludeVirtual, filterPeriodisProjectDestination=filterPeriodisProjectDestination, filterPeriodisCustomerOwned=filterPeriodisCustomerOwned, filterPeriodmatchOnNameOnly=filterPeriodmatchOnNameOnly, filterPeriodstatuses=filterPeriodstatuses, filterPeriodstatusStrings=filterPeriodstatusStrings, filterPeriodstatus=filterPeriodstatus, filterPeriodsearchString=filterPeriodsearchString, filterPeriodsearchNameOnly=filterPeriodsearchNameOnly, filterPeriodsearch=filterPeriodsearch, filterPeriodstartDate=filterPeriodstartDate, filterPeriodendDate=filterPeriodendDate, filterPerioddatePeriod=filterPerioddatePeriod, filterPeriodisExactMatch=filterPeriodisExactMatch, filterPeriodisGetBasicInfo=filterPeriodisGetBasicInfo, filterPeriodincludeDeleted=filterPeriodincludeDeleted, filterPeriodincludeLogs=filterPeriodincludeLogs, filterPeriodignoreID=filterPeriodignoreID, filterPeriodparentID=filterPeriodparentID, filterPeriodgetCountOnly=filterPeriodgetCountOnly, filterPeriodtransactionTypeDatTypeID=filterPeriodtransactionTypeDatTypeID, filterPeriodcategoryID=filterPeriodcategoryID, filterPeriodadaptorID=filterPeriodadaptorID, filterPeriodcategoryIDs=filterPeriodcategoryIDs, filterPeriodbrandIDs=filterPeriodbrandIDs, filterPeriodiDs=filterPeriodiDs, filterPeriodgUIDs=filterPeriodgUIDs, filterPeriodlinkedSupplierID=filterPeriodlinkedSupplierID, filterPeriodisApprovedForPOS=filterPeriodisApprovedForPOS, filterPeriodisApprovedForWeb=filterPeriodisApprovedForWeb, filterPeriodisApprovedForService=filterPeriodisApprovedForService, filterPeriodiD=filterPeriodiD, filterPeriodisHierarchicalSort=filterPeriodisHierarchicalSort, filterPeriodtypes=filterPeriodtypes, filterPeriodisShowFavourites=filterPeriodisShowFavourites, filterPeriodisHidden=filterPeriodisHidden, filterPeriodincludeSystemTasks=filterPeriodincludeSystemTasks, filterPeriodisSystem=filterPeriodisSystem, filterPeriodbatchStatus=filterPeriodbatchStatus, filterPeriodsortField=filterPeriodsortField, filterPeriodsortAsc=filterPeriodsortAsc, filterPeriodgroupBy=filterPeriodgroupBy, filterPeriodlastRowNumber=filterPeriodlastRowNumber, filterPeriodmaxResults=filterPeriodmaxResults, filterPeriodtenantID=filterPeriodtenantID, filterPeriodwebsiteID=filterPeriodwebsiteID, filterPerioduserID=filterPerioduserID)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->warehouseSearchT: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let filterPeriodwarehouseTypeIDs = ; // array[Integer]
    let filterPeriodexcludeProjectWarehousesIfProjectWarehouseID = 56; // Integer
    let filterPeriodincludeVirtual = true; // Boolean
    let filterPeriodisProjectDestination = true; // Boolean
    let filterPeriodisCustomerOwned = true; // Boolean
    let filterPeriodmatchOnNameOnly = true; // Boolean
    let filterPeriodstatuses = ; // array[Integer]
    let filterPeriodstatusStrings = ; // array[String]
    let filterPeriodstatus = ; // array[String]
    let filterPeriodsearchString = filterPeriodsearchString_example; // String
    let filterPeriodsearchNameOnly = true; // Boolean
    let filterPeriodsearch = filterPeriodsearch_example; // String
    let filterPeriodstartDate = 2013-10-20T19:20:30+01:00; // Date
    let filterPeriodendDate = 2013-10-20T19:20:30+01:00; // Date
    let filterPerioddatePeriod = filterPerioddatePeriod_example; // String
    let filterPeriodisExactMatch = true; // Boolean
    let filterPeriodisGetBasicInfo = true; // Boolean
    let filterPeriodincludeDeleted = true; // Boolean
    let filterPeriodincludeLogs = true; // Boolean
    let filterPeriodignoreID = 56; // Integer
    let filterPeriodparentID = 56; // Integer
    let filterPeriodgetCountOnly = true; // Boolean
    let filterPeriodtransactionTypeDatTypeID = 56; // Integer
    let filterPeriodcategoryID = 56; // Integer
    let filterPeriodadaptorID = 56; // Integer
    let filterPeriodcategoryIDs = ; // array[Integer]
    let filterPeriodbrandIDs = ; // array[Integer]
    let filterPeriodiDs = ; // array[Integer]
    let filterPeriodgUIDs = ; // array[String]
    let filterPeriodlinkedSupplierID = 56; // Integer
    let filterPeriodisApprovedForPOS = true; // Boolean
    let filterPeriodisApprovedForWeb = true; // Boolean
    let filterPeriodisApprovedForService = true; // Boolean
    let filterPeriodiD = 56; // Integer
    let filterPeriodisHierarchicalSort = true; // Boolean
    let filterPeriodtypes = ; // array[String]
    let filterPeriodisShowFavourites = true; // Boolean
    let filterPeriodisHidden = true; // Boolean
    let filterPeriodincludeSystemTasks = true; // Boolean
    let filterPeriodisSystem = true; // Boolean
    let filterPeriodbatchStatus = filterPeriodbatchStatus_example; // String
    let filterPeriodsortField = filterPeriodsortField_example; // String
    let filterPeriodsortAsc = true; // Boolean
    let filterPeriodgroupBy = filterPeriodgroupBy_example; // String
    let filterPeriodlastRowNumber = 789; // Long
    let filterPeriodmaxResults = 56; // Integer
    let filterPeriodtenantID = 56; // Integer
    let filterPeriodwebsiteID = 56; // Integer
    let filterPerioduserID = 56; // Integer

    let mut context = DefaultApi::Context::default();
    let result = client.warehouseSearchT(filterPeriodwarehouseTypeIDs, filterPeriodexcludeProjectWarehousesIfProjectWarehouseID, filterPeriodincludeVirtual, filterPeriodisProjectDestination, filterPeriodisCustomerOwned, filterPeriodmatchOnNameOnly, filterPeriodstatuses, filterPeriodstatusStrings, filterPeriodstatus, filterPeriodsearchString, filterPeriodsearchNameOnly, filterPeriodsearch, filterPeriodstartDate, filterPeriodendDate, filterPerioddatePeriod, filterPeriodisExactMatch, filterPeriodisGetBasicInfo, filterPeriodincludeDeleted, filterPeriodincludeLogs, filterPeriodignoreID, filterPeriodparentID, filterPeriodgetCountOnly, filterPeriodtransactionTypeDatTypeID, filterPeriodcategoryID, filterPeriodadaptorID, filterPeriodcategoryIDs, filterPeriodbrandIDs, filterPeriodiDs, filterPeriodgUIDs, filterPeriodlinkedSupplierID, filterPeriodisApprovedForPOS, filterPeriodisApprovedForWeb, filterPeriodisApprovedForService, filterPeriodiD, filterPeriodisHierarchicalSort, filterPeriodtypes, filterPeriodisShowFavourites, filterPeriodisHidden, filterPeriodincludeSystemTasks, filterPeriodisSystem, filterPeriodbatchStatus, filterPeriodsortField, filterPeriodsortAsc, filterPeriodgroupBy, filterPeriodlastRowNumber, filterPeriodmaxResults, filterPeriodtenantID, filterPeriodwebsiteID, filterPerioduserID, &context).wait();

    println!("{:?}", result);
}

Scopes

Parameters

Query parameters
Name Description
filter.warehouseTypeIDs
array[Integer] (int32)
filter.excludeProjectWarehousesIfProjectWarehouseID
Integer (int32)
Format - int32.
filter.includeVirtual
Boolean
filter.isProjectDestination
Boolean
filter.isCustomerOwned
Boolean
filter.matchOnNameOnly
Boolean
filter.statuses
array[Integer] (int32)
filter.statusStrings
array[String]
filter.status
array[String]
filter.searchString
String
filter.searchNameOnly
Boolean
filter.search
String
filter.startDate
Date (date-time)
Format - date-time (as date-time in RFC3339).
filter.endDate
Date (date-time)
Format - date-time (as date-time in RFC3339).
filter.datePeriod
String
filter.isExactMatch
Boolean
filter.isGetBasicInfo
Boolean
filter.includeDeleted
Boolean
filter.includeLogs
Boolean
filter.ignoreID
Integer (int32)
Format - int32.
filter.parentID
Integer (int32)
Format - int32.
filter.getCountOnly
Boolean
filter.transactionTypeDatTypeID
Integer (int32)
Format - int32.
filter.categoryID
Integer (int32)
Format - int32.
filter.adaptorID
Integer (int32)
Format - int32.
filter.categoryIDs
array[Integer] (int32)
filter.brandIDs
array[Integer] (int32)
filter.iDs
array[Integer] (int32)
filter.gUIDs
array[String]
filter.linkedSupplierID
Integer (int32)
Format - int32.
filter.isApprovedForPOS
Boolean
filter.isApprovedForWeb
Boolean
filter.isApprovedForService
Boolean
filter.iD
Integer (int32)
Format - int32.
filter.isHierarchicalSort
Boolean
filter.types
array[String]
filter.isShowFavourites
Boolean
filter.isHidden
Boolean
filter.includeSystemTasks
Boolean
filter.isSystem
Boolean
filter.batchStatus
String
filter.sortField
String
filter.sortAsc
Boolean
filter.groupBy
String
filter.lastRowNumber
Long (int64)
Format - int64.
filter.maxResults
Integer (int32)
Format - int32.
filter.tenantID
Integer (int32)
Format - int32.
filter.websiteID
Integer (int32)
Format - int32.
filter.userID
Integer (int32)
Format - int32.

Responses