descriptionSearch
Description Search API URL
/api/v2/trademarks/description/{searchTerm}/status/{status}/start/{start}/username/apieco/password/4WHtTj8FrQ
Usage and SDK Samples
curl -X GET "https://api.apieco.ir/marker/api/v2/trademarks/description/{searchTerm}/status/{status}/start/{start}/username/apieco/password/4WHtTj8FrQ"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DescriptionSearchApi;
import java.io.File;
import java.util.*;
public class DescriptionSearchApiExample {
public static void main(String[] args) {
DescriptionSearchApi apiInstance = new DescriptionSearchApi();
String apiecoKey = apiecoKey_example; // String |
String searchTerm = searchTerm_example; // String | Search term should not include asterisks but will be handled as a "*search*" wildcard search
String status = status_example; // String | active or all
String start = start_example; // String | an integer
try {
inline_response_200 result = apiInstance.descriptionSearch(apiecoKey, searchTerm, status, start);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling DescriptionSearchApi#descriptionSearch");
e.printStackTrace();
}
}
}
import io.swagger.client.api.DescriptionSearchApi;
public class DescriptionSearchApiExample {
public static void main(String[] args) {
DescriptionSearchApi apiInstance = new DescriptionSearchApi();
String apiecoKey = apiecoKey_example; // String |
String searchTerm = searchTerm_example; // String | Search term should not include asterisks but will be handled as a "*search*" wildcard search
String status = status_example; // String | active or all
String start = start_example; // String | an integer
try {
inline_response_200 result = apiInstance.descriptionSearch(apiecoKey, searchTerm, status, start);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling DescriptionSearchApi#descriptionSearch");
e.printStackTrace();
}
}
}
String *apiecoKey = apiecoKey_example; //
String *searchTerm = searchTerm_example; // Search term should not include asterisks but will be handled as a "*search*" wildcard search
String *status = status_example; // active or all
String *start = start_example; // an integer
DescriptionSearchApi *apiInstance = [[DescriptionSearchApi alloc] init];
[apiInstance descriptionSearchWith:apiecoKey
searchTerm:searchTerm
status:status
start:start
completionHandler: ^(inline_response_200 output, NSError* error) {
if (output) {
NSLog(@"%@", output);
}
if (error) {
NSLog(@"Error: %@", error);
}
}];
var MarkerApi = require('marker_api');
var api = new MarkerApi.DescriptionSearchApi()
var apiecoKey = apiecoKey_example; // {String}
var searchTerm = searchTerm_example; // {String} Search term should not include asterisks but will be handled as a "*search*" wildcard search
var status = status_example; // {String} active or all
var start = start_example; // {String} an integer
var callback = function(error, data, response) {
if (error) {
console.error(error);
} else {
console.log('API called successfully. Returned data: ' + data);
}
};
api.descriptionSearch(apiecoKey, searchTerm, status, start, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;
namespace Example
{
public class descriptionSearchExample
{
public void main()
{
var apiInstance = new DescriptionSearchApi();
var apiecoKey = apiecoKey_example; // String |
var searchTerm = searchTerm_example; // String | Search term should not include asterisks but will be handled as a "*search*" wildcard search
var status = status_example; // String | active or all
var start = start_example; // String | an integer
try
{
inline_response_200 result = apiInstance.descriptionSearch(apiecoKey, searchTerm, status, start);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling DescriptionSearchApi.descriptionSearch: " + e.Message );
}
}
}
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$api_instance = new Swagger\Client\Api\DescriptionSearchApi();
$apiecoKey = apiecoKey_example; // String |
$searchTerm = searchTerm_example; // String | Search term should not include asterisks but will be handled as a "*search*" wildcard search
$status = status_example; // String | active or all
$start = start_example; // String | an integer
try {
$result = $api_instance->descriptionSearch($apiecoKey, $searchTerm, $status, $start);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling DescriptionSearchApi->descriptionSearch: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::DescriptionSearchApi;
my $api_instance = WWW::SwaggerClient::DescriptionSearchApi->new();
my $apiecoKey = apiecoKey_example; # String |
my $searchTerm = searchTerm_example; # String | Search term should not include asterisks but will be handled as a "*search*" wildcard search
my $status = status_example; # String | active or all
my $start = start_example; # String | an integer
eval {
my $result = $api_instance->descriptionSearch(apiecoKey => $apiecoKey, searchTerm => $searchTerm, status => $status, start => $start);
print Dumper($result);
};
if ($@) {
warn "Exception when calling DescriptionSearchApi->descriptionSearch: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint
# create an instance of the API class
api_instance = swagger_client.DescriptionSearchApi()
apiecoKey = apiecoKey_example # String |
searchTerm = searchTerm_example # String | Search term should not include asterisks but will be handled as a "*search*" wildcard search
status = status_example # String | active or all
start = start_example # String | an integer
try:
api_response = api_instance.description_search(apiecoKey, searchTerm, status, start)
pprint(api_response)
except ApiException as e:
print("Exception when calling DescriptionSearchApi->descriptionSearch: %s\n" % e)
Parameters
Name | Description |
---|---|
searchTerm* |
String
Search term should not include asterisks but will be handled as a "*search*" wildcard search
Required
|
status* |
String
active or all
Required
|
start* |
String
an integer
Required
|
Name | Description |
---|---|
apieco-key* |
String
Required
|