1TrueID 3.0 Maker Customer

Default

appNamesCreatePost


/appNames/create

Usage and SDK Samples

curl -X POST\
"http://localhost:3004//appNames/create"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DefaultApi;

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

public class DefaultApiExample {

    public static void main(String[] args) {
        
        DefaultApi apiInstance = new DefaultApi();
        try {
            apiInstance.appNamesCreatePost();
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#appNamesCreatePost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.DefaultApi;

public class DefaultApiExample {

    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        try {
            apiInstance.appNamesCreatePost();
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#appNamesCreatePost");
            e.printStackTrace();
        }
    }
}

DefaultApi *apiInstance = [[DefaultApi alloc] init];

[apiInstance appNamesCreatePostWithCompletionHandler: 
              ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var 1TrueId30MakerCustomer = require('1_true_id_30_maker_customer');

var api = new 1TrueId30MakerCustomer.DefaultApi()
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.appNamesCreatePost(callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new DefaultApi();

            try
            {
                apiInstance.appNamesCreatePost();
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling DefaultApi.appNamesCreatePost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiDefaultApi();

try {
    $api_instance->appNamesCreatePost();
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->appNamesCreatePost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::DefaultApi;

my $api_instance = WWW::SwaggerClient::DefaultApi->new();

eval { 
    $api_instance->appNamesCreatePost();
};
if ($@) {
    warn "Exception when calling DefaultApi->appNamesCreatePost: $@\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.DefaultApi()

try: 
    api_instance.app_names_create_post()
except ApiException as e:
    print("Exception when calling DefaultApi->appNamesCreatePost: %s\n" % e)

Parameters

Responses

Status: 200 - OK

Status: 201 - Created


brandCountGet


/brand/count

Usage and SDK Samples

curl -X GET\
"http://localhost:3004//brand/count?q="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DefaultApi;

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

public class DefaultApiExample {

    public static void main(String[] args) {
        
        DefaultApi apiInstance = new DefaultApi();
        String q = q_example; // String | 
        try {
            apiInstance.brandCountGet(q);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#brandCountGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.DefaultApi;

public class DefaultApiExample {

    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        String q = q_example; // String | 
        try {
            apiInstance.brandCountGet(q);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#brandCountGet");
            e.printStackTrace();
        }
    }
}
String *q = q_example; //  (optional)

DefaultApi *apiInstance = [[DefaultApi alloc] init];

[apiInstance brandCountGetWith:q
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var 1TrueId30MakerCustomer = require('1_true_id_30_maker_customer');

var api = new 1TrueId30MakerCustomer.DefaultApi()
var opts = { 
  'q': q_example // {{String}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.brandCountGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new DefaultApi();
            var q = q_example;  // String |  (optional) 

            try
            {
                apiInstance.brandCountGet(q);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling DefaultApi.brandCountGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiDefaultApi();
$q = q_example; // String | 

try {
    $api_instance->brandCountGet($q);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->brandCountGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::DefaultApi;

my $api_instance = WWW::SwaggerClient::DefaultApi->new();
my $q = q_example; # String | 

eval { 
    $api_instance->brandCountGet(q => $q);
};
if ($@) {
    warn "Exception when calling DefaultApi->brandCountGet: $@\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.DefaultApi()
q = q_example # String |  (optional)

try: 
    api_instance.brand_count_get(q=q)
except ApiException as e:
    print("Exception when calling DefaultApi->brandCountGet: %s\n" % e)

Parameters

Query parameters
Name Description
q
String

Responses

Status: 200 - OK


brandCreateBrandPost


/brand/createBrand

Usage and SDK Samples

curl -X POST\
-H "Content-Type: application/json"\
"http://localhost:3004//brand/createBrand"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DefaultApi;

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

public class DefaultApiExample {

    public static void main(String[] args) {
        
        DefaultApi apiInstance = new DefaultApi();
        Brand_createBrand_body body = ; // Brand_createBrand_body | 
        try {
            apiInstance.brandCreateBrandPost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#brandCreateBrandPost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.DefaultApi;

public class DefaultApiExample {

    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        Brand_createBrand_body body = ; // Brand_createBrand_body | 
        try {
            apiInstance.brandCreateBrandPost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#brandCreateBrandPost");
            e.printStackTrace();
        }
    }
}
Brand_createBrand_body *body = ; //  (optional)

DefaultApi *apiInstance = [[DefaultApi alloc] init];

[apiInstance brandCreateBrandPostWith:body
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var 1TrueId30MakerCustomer = require('1_true_id_30_maker_customer');

var api = new 1TrueId30MakerCustomer.DefaultApi()
var opts = { 
  'body':  // {{Brand_createBrand_body}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.brandCreateBrandPost(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new DefaultApi();
            var body = new Brand_createBrand_body(); // Brand_createBrand_body |  (optional) 

            try
            {
                apiInstance.brandCreateBrandPost(body);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling DefaultApi.brandCreateBrandPost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiDefaultApi();
$body = ; // Brand_createBrand_body | 

try {
    $api_instance->brandCreateBrandPost($body);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->brandCreateBrandPost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::DefaultApi;

my $api_instance = WWW::SwaggerClient::DefaultApi->new();
my $body = WWW::SwaggerClient::Object::Brand_createBrand_body->new(); # Brand_createBrand_body | 

eval { 
    $api_instance->brandCreateBrandPost(body => $body);
};
if ($@) {
    warn "Exception when calling DefaultApi->brandCreateBrandPost: $@\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.DefaultApi()
body =  # Brand_createBrand_body |  (optional)

try: 
    api_instance.brand_create_brand_post(body=body)
except ApiException as e:
    print("Exception when calling DefaultApi->brandCreateBrandPost: %s\n" % e)

Parameters

Body parameters
Name Description
body

Responses

Status: 200 - OK


brandGetBrandsGet


/brand/getBrands

Usage and SDK Samples

curl -X GET\
"http://localhost:3004//brand/getBrands?filters="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DefaultApi;

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

public class DefaultApiExample {

    public static void main(String[] args) {
        
        DefaultApi apiInstance = new DefaultApi();
        String filters = filters_example; // String | 
        try {
            apiInstance.brandGetBrandsGet(filters);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#brandGetBrandsGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.DefaultApi;

public class DefaultApiExample {

    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        String filters = filters_example; // String | 
        try {
            apiInstance.brandGetBrandsGet(filters);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#brandGetBrandsGet");
            e.printStackTrace();
        }
    }
}
String *filters = filters_example; //  (optional)

DefaultApi *apiInstance = [[DefaultApi alloc] init];

[apiInstance brandGetBrandsGetWith:filters
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var 1TrueId30MakerCustomer = require('1_true_id_30_maker_customer');

var api = new 1TrueId30MakerCustomer.DefaultApi()
var opts = { 
  'filters': filters_example // {{String}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.brandGetBrandsGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new DefaultApi();
            var filters = filters_example;  // String |  (optional) 

            try
            {
                apiInstance.brandGetBrandsGet(filters);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling DefaultApi.brandGetBrandsGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiDefaultApi();
$filters = filters_example; // String | 

try {
    $api_instance->brandGetBrandsGet($filters);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->brandGetBrandsGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::DefaultApi;

my $api_instance = WWW::SwaggerClient::DefaultApi->new();
my $filters = filters_example; # String | 

eval { 
    $api_instance->brandGetBrandsGet(filters => $filters);
};
if ($@) {
    warn "Exception when calling DefaultApi->brandGetBrandsGet: $@\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.DefaultApi()
filters = filters_example # String |  (optional)

try: 
    api_instance.brand_get_brands_get(filters=filters)
except ApiException as e:
    print("Exception when calling DefaultApi->brandGetBrandsGet: %s\n" % e)

Parameters

Query parameters
Name Description
filters
String

Responses

Status: 200 - OK


checkCheckStatusBCGet


/check/checkStatusBC

Usage and SDK Samples

curl -X GET\
"http://localhost:3004//check/checkStatusBC"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DefaultApi;

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

public class DefaultApiExample {

    public static void main(String[] args) {
        
        DefaultApi apiInstance = new DefaultApi();
        try {
            apiInstance.checkCheckStatusBCGet();
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#checkCheckStatusBCGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.DefaultApi;

public class DefaultApiExample {

    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        try {
            apiInstance.checkCheckStatusBCGet();
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#checkCheckStatusBCGet");
            e.printStackTrace();
        }
    }
}

DefaultApi *apiInstance = [[DefaultApi alloc] init];

[apiInstance checkCheckStatusBCGetWithCompletionHandler: 
              ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var 1TrueId30MakerCustomer = require('1_true_id_30_maker_customer');

var api = new 1TrueId30MakerCustomer.DefaultApi()
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.checkCheckStatusBCGet(callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new DefaultApi();

            try
            {
                apiInstance.checkCheckStatusBCGet();
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling DefaultApi.checkCheckStatusBCGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiDefaultApi();

try {
    $api_instance->checkCheckStatusBCGet();
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->checkCheckStatusBCGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::DefaultApi;

my $api_instance = WWW::SwaggerClient::DefaultApi->new();

eval { 
    $api_instance->checkCheckStatusBCGet();
};
if ($@) {
    warn "Exception when calling DefaultApi->checkCheckStatusBCGet: $@\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.DefaultApi()

try: 
    api_instance.check_check_status_bc_get()
except ApiException as e:
    print("Exception when calling DefaultApi->checkCheckStatusBCGet: %s\n" % e)

Parameters

Responses

Status: 200 - OK


checkExportToProdCopyGet


/check/exportToProdCopy

Usage and SDK Samples

curl -X GET\
"http://localhost:3004//check/exportToProdCopy"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DefaultApi;

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

public class DefaultApiExample {

    public static void main(String[] args) {
        
        DefaultApi apiInstance = new DefaultApi();
        try {
            apiInstance.checkExportToProdCopyGet();
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#checkExportToProdCopyGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.DefaultApi;

public class DefaultApiExample {

    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        try {
            apiInstance.checkExportToProdCopyGet();
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#checkExportToProdCopyGet");
            e.printStackTrace();
        }
    }
}

DefaultApi *apiInstance = [[DefaultApi alloc] init];

[apiInstance checkExportToProdCopyGetWithCompletionHandler: 
              ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var 1TrueId30MakerCustomer = require('1_true_id_30_maker_customer');

var api = new 1TrueId30MakerCustomer.DefaultApi()
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.checkExportToProdCopyGet(callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new DefaultApi();

            try
            {
                apiInstance.checkExportToProdCopyGet();
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling DefaultApi.checkExportToProdCopyGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiDefaultApi();

try {
    $api_instance->checkExportToProdCopyGet();
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->checkExportToProdCopyGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::DefaultApi;

my $api_instance = WWW::SwaggerClient::DefaultApi->new();

eval { 
    $api_instance->checkExportToProdCopyGet();
};
if ($@) {
    warn "Exception when calling DefaultApi->checkExportToProdCopyGet: $@\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.DefaultApi()

try: 
    api_instance.check_export_to_prod_copy_get()
except ApiException as e:
    print("Exception when calling DefaultApi->checkExportToProdCopyGet: %s\n" % e)

Parameters

Responses

Status: 200 - OK


checkUpdateAssStatusGet


/check/updateAssStatus

Usage and SDK Samples

curl -X GET\
"http://localhost:3004//check/updateAssStatus"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DefaultApi;

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

public class DefaultApiExample {

    public static void main(String[] args) {
        
        DefaultApi apiInstance = new DefaultApi();
        try {
            apiInstance.checkUpdateAssStatusGet();
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#checkUpdateAssStatusGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.DefaultApi;

public class DefaultApiExample {

    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        try {
            apiInstance.checkUpdateAssStatusGet();
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#checkUpdateAssStatusGet");
            e.printStackTrace();
        }
    }
}

DefaultApi *apiInstance = [[DefaultApi alloc] init];

[apiInstance checkUpdateAssStatusGetWithCompletionHandler: 
              ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var 1TrueId30MakerCustomer = require('1_true_id_30_maker_customer');

var api = new 1TrueId30MakerCustomer.DefaultApi()
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.checkUpdateAssStatusGet(callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new DefaultApi();

            try
            {
                apiInstance.checkUpdateAssStatusGet();
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling DefaultApi.checkUpdateAssStatusGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiDefaultApi();

try {
    $api_instance->checkUpdateAssStatusGet();
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->checkUpdateAssStatusGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::DefaultApi;

my $api_instance = WWW::SwaggerClient::DefaultApi->new();

eval { 
    $api_instance->checkUpdateAssStatusGet();
};
if ($@) {
    warn "Exception when calling DefaultApi->checkUpdateAssStatusGet: $@\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.DefaultApi()

try: 
    api_instance.check_update_ass_status_get()
except ApiException as e:
    print("Exception when calling DefaultApi->checkUpdateAssStatusGet: %s\n" % e)

Parameters

Responses

Status: 200 - OK


checkUpdateStatusMINTGet


/check/updateStatusMINT

Usage and SDK Samples

curl -X GET\
"http://localhost:3004//check/updateStatusMINT"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DefaultApi;

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

public class DefaultApiExample {

    public static void main(String[] args) {
        
        DefaultApi apiInstance = new DefaultApi();
        try {
            apiInstance.checkUpdateStatusMINTGet();
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#checkUpdateStatusMINTGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.DefaultApi;

public class DefaultApiExample {

    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        try {
            apiInstance.checkUpdateStatusMINTGet();
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#checkUpdateStatusMINTGet");
            e.printStackTrace();
        }
    }
}

DefaultApi *apiInstance = [[DefaultApi alloc] init];

[apiInstance checkUpdateStatusMINTGetWithCompletionHandler: 
              ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var 1TrueId30MakerCustomer = require('1_true_id_30_maker_customer');

var api = new 1TrueId30MakerCustomer.DefaultApi()
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.checkUpdateStatusMINTGet(callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new DefaultApi();

            try
            {
                apiInstance.checkUpdateStatusMINTGet();
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling DefaultApi.checkUpdateStatusMINTGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiDefaultApi();

try {
    $api_instance->checkUpdateStatusMINTGet();
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->checkUpdateStatusMINTGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::DefaultApi;

my $api_instance = WWW::SwaggerClient::DefaultApi->new();

eval { 
    $api_instance->checkUpdateStatusMINTGet();
};
if ($@) {
    warn "Exception when calling DefaultApi->checkUpdateStatusMINTGet: $@\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.DefaultApi()

try: 
    api_instance.check_update_status_mint_get()
except ApiException as e:
    print("Exception when calling DefaultApi->checkUpdateStatusMINTGet: %s\n" % e)

Parameters

Responses

Status: 200 - OK


distributionChainDistributorUidGet


/distributionChain/{distributorUid}

Usage and SDK Samples

curl -X GET\
"http://localhost:3004//distributionChain/{distributorUid}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DefaultApi;

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

public class DefaultApiExample {

    public static void main(String[] args) {
        
        DefaultApi apiInstance = new DefaultApi();
        String distributorUid = distributorUid_example; // String | 
        try {
            apiInstance.distributionChainDistributorUidGet(distributorUid);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#distributionChainDistributorUidGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.DefaultApi;

public class DefaultApiExample {

    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        String distributorUid = distributorUid_example; // String | 
        try {
            apiInstance.distributionChainDistributorUidGet(distributorUid);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#distributionChainDistributorUidGet");
            e.printStackTrace();
        }
    }
}
String *distributorUid = distributorUid_example; // 

DefaultApi *apiInstance = [[DefaultApi alloc] init];

[apiInstance distributionChainDistributorUidGetWith:distributorUid
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var 1TrueId30MakerCustomer = require('1_true_id_30_maker_customer');

var api = new 1TrueId30MakerCustomer.DefaultApi()
var distributorUid = distributorUid_example; // {{String}} 

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.distributionChainDistributorUidGet(distributorUid, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new DefaultApi();
            var distributorUid = distributorUid_example;  // String | 

            try
            {
                apiInstance.distributionChainDistributorUidGet(distributorUid);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling DefaultApi.distributionChainDistributorUidGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiDefaultApi();
$distributorUid = distributorUid_example; // String | 

try {
    $api_instance->distributionChainDistributorUidGet($distributorUid);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->distributionChainDistributorUidGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::DefaultApi;

my $api_instance = WWW::SwaggerClient::DefaultApi->new();
my $distributorUid = distributorUid_example; # String | 

eval { 
    $api_instance->distributionChainDistributorUidGet(distributorUid => $distributorUid);
};
if ($@) {
    warn "Exception when calling DefaultApi->distributionChainDistributorUidGet: $@\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.DefaultApi()
distributorUid = distributorUid_example # String | 

try: 
    api_instance.distribution_chain_distributor_uid_get(distributorUid)
except ApiException as e:
    print("Exception when calling DefaultApi->distributionChainDistributorUidGet: %s\n" % e)

Parameters

Path parameters
Name Description
distributorUid*
String
Required

Responses

Status: 200 - OK


distributionChainGet


/distributionChain/

Usage and SDK Samples

curl -X GET\
"http://localhost:3004//distributionChain/?limit=&skip=&sort=&q="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DefaultApi;

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

public class DefaultApiExample {

    public static void main(String[] args) {
        
        DefaultApi apiInstance = new DefaultApi();
        String limit = limit_example; // String | 
        String skip = skip_example; // String | 
        String sort = sort_example; // String | 
        String q = q_example; // String | 
        try {
            apiInstance.distributionChainGet(limit, skip, sort, q);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#distributionChainGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.DefaultApi;

public class DefaultApiExample {

    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        String limit = limit_example; // String | 
        String skip = skip_example; // String | 
        String sort = sort_example; // String | 
        String q = q_example; // String | 
        try {
            apiInstance.distributionChainGet(limit, skip, sort, q);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#distributionChainGet");
            e.printStackTrace();
        }
    }
}
String *limit = limit_example; //  (optional)
String *skip = skip_example; //  (optional)
String *sort = sort_example; //  (optional)
String *q = q_example; //  (optional)

DefaultApi *apiInstance = [[DefaultApi alloc] init];

[apiInstance distributionChainGetWith:limit
    skip:skip
    sort:sort
    q:q
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var 1TrueId30MakerCustomer = require('1_true_id_30_maker_customer');

var api = new 1TrueId30MakerCustomer.DefaultApi()
var opts = { 
  'limit': limit_example, // {{String}} 
  'skip': skip_example, // {{String}} 
  'sort': sort_example, // {{String}} 
  'q': q_example // {{String}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.distributionChainGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new DefaultApi();
            var limit = limit_example;  // String |  (optional) 
            var skip = skip_example;  // String |  (optional) 
            var sort = sort_example;  // String |  (optional) 
            var q = q_example;  // String |  (optional) 

            try
            {
                apiInstance.distributionChainGet(limit, skip, sort, q);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling DefaultApi.distributionChainGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiDefaultApi();
$limit = limit_example; // String | 
$skip = skip_example; // String | 
$sort = sort_example; // String | 
$q = q_example; // String | 

try {
    $api_instance->distributionChainGet($limit, $skip, $sort, $q);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->distributionChainGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::DefaultApi;

my $api_instance = WWW::SwaggerClient::DefaultApi->new();
my $limit = limit_example; # String | 
my $skip = skip_example; # String | 
my $sort = sort_example; # String | 
my $q = q_example; # String | 

eval { 
    $api_instance->distributionChainGet(limit => $limit, skip => $skip, sort => $sort, q => $q);
};
if ($@) {
    warn "Exception when calling DefaultApi->distributionChainGet: $@\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.DefaultApi()
limit = limit_example # String |  (optional)
skip = skip_example # String |  (optional)
sort = sort_example # String |  (optional)
q = q_example # String |  (optional)

try: 
    api_instance.distribution_chain_get(limit=limit, skip=skip, sort=sort, q=q)
except ApiException as e:
    print("Exception when calling DefaultApi->distributionChainGet: %s\n" % e)

Parameters

Query parameters
Name Description
limit
String
skip
String
sort
String
q
String

Responses

Status: 200 - OK


distributionChainUpdatePadrePut


/distributionChain/updatePadre

Usage and SDK Samples

curl -X PUT\
-H "Content-Type: application/json"\
"http://localhost:3004//distributionChain/updatePadre?limit=&skip=&sort=&q="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DefaultApi;

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

public class DefaultApiExample {

    public static void main(String[] args) {
        
        DefaultApi apiInstance = new DefaultApi();
        DistributionChain_updatePadre_body body = ; // DistributionChain_updatePadre_body | 
        String limit = limit_example; // String | 
        String skip = skip_example; // String | 
        String sort = sort_example; // String | 
        String q = q_example; // String | 
        try {
            apiInstance.distributionChainUpdatePadrePut(body, limit, skip, sort, q);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#distributionChainUpdatePadrePut");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.DefaultApi;

public class DefaultApiExample {

    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        DistributionChain_updatePadre_body body = ; // DistributionChain_updatePadre_body | 
        String limit = limit_example; // String | 
        String skip = skip_example; // String | 
        String sort = sort_example; // String | 
        String q = q_example; // String | 
        try {
            apiInstance.distributionChainUpdatePadrePut(body, limit, skip, sort, q);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#distributionChainUpdatePadrePut");
            e.printStackTrace();
        }
    }
}
DistributionChain_updatePadre_body *body = ; //  (optional)
String *limit = limit_example; //  (optional)
String *skip = skip_example; //  (optional)
String *sort = sort_example; //  (optional)
String *q = q_example; //  (optional)

DefaultApi *apiInstance = [[DefaultApi alloc] init];

[apiInstance distributionChainUpdatePadrePutWith:body
    limit:limit
    skip:skip
    sort:sort
    q:q
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var 1TrueId30MakerCustomer = require('1_true_id_30_maker_customer');

var api = new 1TrueId30MakerCustomer.DefaultApi()
var opts = { 
  'body':  // {{DistributionChain_updatePadre_body}} 
  'limit': limit_example // {{String}} 
  'skip': skip_example // {{String}} 
  'sort': sort_example // {{String}} 
  'q': q_example // {{String}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.distributionChainUpdatePadrePut(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new DefaultApi();
            var body = new DistributionChain_updatePadre_body(); // DistributionChain_updatePadre_body |  (optional) 
            var limit = limit_example;  // String |  (optional) 
            var skip = skip_example;  // String |  (optional) 
            var sort = sort_example;  // String |  (optional) 
            var q = q_example;  // String |  (optional) 

            try
            {
                apiInstance.distributionChainUpdatePadrePut(body, limit, skip, sort, q);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling DefaultApi.distributionChainUpdatePadrePut: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiDefaultApi();
$body = ; // DistributionChain_updatePadre_body | 
$limit = limit_example; // String | 
$skip = skip_example; // String | 
$sort = sort_example; // String | 
$q = q_example; // String | 

try {
    $api_instance->distributionChainUpdatePadrePut($body, $limit, $skip, $sort, $q);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->distributionChainUpdatePadrePut: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::DefaultApi;

my $api_instance = WWW::SwaggerClient::DefaultApi->new();
my $body = WWW::SwaggerClient::Object::DistributionChain_updatePadre_body->new(); # DistributionChain_updatePadre_body | 
my $limit = limit_example; # String | 
my $skip = skip_example; # String | 
my $sort = sort_example; # String | 
my $q = q_example; # String | 

eval { 
    $api_instance->distributionChainUpdatePadrePut(body => $body, limit => $limit, skip => $skip, sort => $sort, q => $q);
};
if ($@) {
    warn "Exception when calling DefaultApi->distributionChainUpdatePadrePut: $@\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.DefaultApi()
body =  # DistributionChain_updatePadre_body |  (optional)
limit = limit_example # String |  (optional)
skip = skip_example # String |  (optional)
sort = sort_example # String |  (optional)
q = q_example # String |  (optional)

try: 
    api_instance.distribution_chain_update_padre_put(body=body, limit=limit, skip=skip, sort=sort, q=q)
except ApiException as e:
    print("Exception when calling DefaultApi->distributionChainUpdatePadrePut: %s\n" % e)

Parameters

Body parameters
Name Description
body
Query parameters
Name Description
limit
String
skip
String
sort
String
q
String

Responses

Status: 200 - OK


normaAssociaTemplateProfilePost


/norma/associaTemplateProfile

Usage and SDK Samples

curl -X POST\
-H "Content-Type: application/json"\
"http://localhost:3004//norma/associaTemplateProfile"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DefaultApi;

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

public class DefaultApiExample {

    public static void main(String[] args) {
        
        DefaultApi apiInstance = new DefaultApi();
        Norma_associaTemplateProfile_body body = ; // Norma_associaTemplateProfile_body | 
        try {
            apiInstance.normaAssociaTemplateProfilePost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#normaAssociaTemplateProfilePost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.DefaultApi;

public class DefaultApiExample {

    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        Norma_associaTemplateProfile_body body = ; // Norma_associaTemplateProfile_body | 
        try {
            apiInstance.normaAssociaTemplateProfilePost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#normaAssociaTemplateProfilePost");
            e.printStackTrace();
        }
    }
}
Norma_associaTemplateProfile_body *body = ; //  (optional)

DefaultApi *apiInstance = [[DefaultApi alloc] init];

[apiInstance normaAssociaTemplateProfilePostWith:body
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var 1TrueId30MakerCustomer = require('1_true_id_30_maker_customer');

var api = new 1TrueId30MakerCustomer.DefaultApi()
var opts = { 
  'body':  // {{Norma_associaTemplateProfile_body}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.normaAssociaTemplateProfilePost(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new DefaultApi();
            var body = new Norma_associaTemplateProfile_body(); // Norma_associaTemplateProfile_body |  (optional) 

            try
            {
                apiInstance.normaAssociaTemplateProfilePost(body);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling DefaultApi.normaAssociaTemplateProfilePost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiDefaultApi();
$body = ; // Norma_associaTemplateProfile_body | 

try {
    $api_instance->normaAssociaTemplateProfilePost($body);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->normaAssociaTemplateProfilePost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::DefaultApi;

my $api_instance = WWW::SwaggerClient::DefaultApi->new();
my $body = WWW::SwaggerClient::Object::Norma_associaTemplateProfile_body->new(); # Norma_associaTemplateProfile_body | 

eval { 
    $api_instance->normaAssociaTemplateProfilePost(body => $body);
};
if ($@) {
    warn "Exception when calling DefaultApi->normaAssociaTemplateProfilePost: $@\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.DefaultApi()
body =  # Norma_associaTemplateProfile_body |  (optional)

try: 
    api_instance.norma_associa_template_profile_post(body=body)
except ApiException as e:
    print("Exception when calling DefaultApi->normaAssociaTemplateProfilePost: %s\n" % e)

Parameters

Body parameters
Name Description
body

Responses

Status: 200 - OK


normaDeleteIwstdnormaTemplatePost


/norma/deleteIwstdnormaTemplate

Usage and SDK Samples

curl -X POST\
"http://localhost:3004//norma/deleteIwstdnormaTemplate"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DefaultApi;

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

public class DefaultApiExample {

    public static void main(String[] args) {
        
        DefaultApi apiInstance = new DefaultApi();
        try {
            apiInstance.normaDeleteIwstdnormaTemplatePost();
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#normaDeleteIwstdnormaTemplatePost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.DefaultApi;

public class DefaultApiExample {

    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        try {
            apiInstance.normaDeleteIwstdnormaTemplatePost();
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#normaDeleteIwstdnormaTemplatePost");
            e.printStackTrace();
        }
    }
}

DefaultApi *apiInstance = [[DefaultApi alloc] init];

[apiInstance normaDeleteIwstdnormaTemplatePostWithCompletionHandler: 
              ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var 1TrueId30MakerCustomer = require('1_true_id_30_maker_customer');

var api = new 1TrueId30MakerCustomer.DefaultApi()
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.normaDeleteIwstdnormaTemplatePost(callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new DefaultApi();

            try
            {
                apiInstance.normaDeleteIwstdnormaTemplatePost();
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling DefaultApi.normaDeleteIwstdnormaTemplatePost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiDefaultApi();

try {
    $api_instance->normaDeleteIwstdnormaTemplatePost();
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->normaDeleteIwstdnormaTemplatePost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::DefaultApi;

my $api_instance = WWW::SwaggerClient::DefaultApi->new();

eval { 
    $api_instance->normaDeleteIwstdnormaTemplatePost();
};
if ($@) {
    warn "Exception when calling DefaultApi->normaDeleteIwstdnormaTemplatePost: $@\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.DefaultApi()

try: 
    api_instance.norma_delete_iwstdnorma_template_post()
except ApiException as e:
    print("Exception when calling DefaultApi->normaDeleteIwstdnormaTemplatePost: %s\n" % e)

Parameters

Responses

Status: 200 - OK


normaDeleteIwswdnormaProfileTemplatesPost


/norma/deleteIwswdnormaProfileTemplates

Usage and SDK Samples

curl -X POST\
"http://localhost:3004//norma/deleteIwswdnormaProfileTemplates"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DefaultApi;

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

public class DefaultApiExample {

    public static void main(String[] args) {
        
        DefaultApi apiInstance = new DefaultApi();
        try {
            apiInstance.normaDeleteIwswdnormaProfileTemplatesPost();
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#normaDeleteIwswdnormaProfileTemplatesPost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.DefaultApi;

public class DefaultApiExample {

    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        try {
            apiInstance.normaDeleteIwswdnormaProfileTemplatesPost();
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#normaDeleteIwswdnormaProfileTemplatesPost");
            e.printStackTrace();
        }
    }
}

DefaultApi *apiInstance = [[DefaultApi alloc] init];

[apiInstance normaDeleteIwswdnormaProfileTemplatesPostWithCompletionHandler: 
              ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var 1TrueId30MakerCustomer = require('1_true_id_30_maker_customer');

var api = new 1TrueId30MakerCustomer.DefaultApi()
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.normaDeleteIwswdnormaProfileTemplatesPost(callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new DefaultApi();

            try
            {
                apiInstance.normaDeleteIwswdnormaProfileTemplatesPost();
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling DefaultApi.normaDeleteIwswdnormaProfileTemplatesPost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiDefaultApi();

try {
    $api_instance->normaDeleteIwswdnormaProfileTemplatesPost();
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->normaDeleteIwswdnormaProfileTemplatesPost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::DefaultApi;

my $api_instance = WWW::SwaggerClient::DefaultApi->new();

eval { 
    $api_instance->normaDeleteIwswdnormaProfileTemplatesPost();
};
if ($@) {
    warn "Exception when calling DefaultApi->normaDeleteIwswdnormaProfileTemplatesPost: $@\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.DefaultApi()

try: 
    api_instance.norma_delete_iwswdnorma_profile_templates_post()
except ApiException as e:
    print("Exception when calling DefaultApi->normaDeleteIwswdnormaProfileTemplatesPost: %s\n" % e)

Parameters

Responses

Status: 200 - OK


normaFindIwswdnormaElementiListGet


/norma/findIwswdnormaElementiList

Usage and SDK Samples

curl -X GET\
"http://localhost:3004//norma/findIwswdnormaElementiList?idLingua=&filters="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DefaultApi;

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

public class DefaultApiExample {

    public static void main(String[] args) {
        
        DefaultApi apiInstance = new DefaultApi();
        String idLingua = idLingua_example; // String | 
        String filters = filters_example; // String | 
        try {
            apiInstance.normaFindIwswdnormaElementiListGet(idLingua, filters);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#normaFindIwswdnormaElementiListGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.DefaultApi;

public class DefaultApiExample {

    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        String idLingua = idLingua_example; // String | 
        String filters = filters_example; // String | 
        try {
            apiInstance.normaFindIwswdnormaElementiListGet(idLingua, filters);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#normaFindIwswdnormaElementiListGet");
            e.printStackTrace();
        }
    }
}
String *idLingua = idLingua_example; //  (optional)
String *filters = filters_example; //  (optional)

DefaultApi *apiInstance = [[DefaultApi alloc] init];

[apiInstance normaFindIwswdnormaElementiListGetWith:idLingua
    filters:filters
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var 1TrueId30MakerCustomer = require('1_true_id_30_maker_customer');

var api = new 1TrueId30MakerCustomer.DefaultApi()
var opts = { 
  'idLingua': idLingua_example, // {{String}} 
  'filters': filters_example // {{String}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.normaFindIwswdnormaElementiListGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new DefaultApi();
            var idLingua = idLingua_example;  // String |  (optional) 
            var filters = filters_example;  // String |  (optional) 

            try
            {
                apiInstance.normaFindIwswdnormaElementiListGet(idLingua, filters);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling DefaultApi.normaFindIwswdnormaElementiListGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiDefaultApi();
$idLingua = idLingua_example; // String | 
$filters = filters_example; // String | 

try {
    $api_instance->normaFindIwswdnormaElementiListGet($idLingua, $filters);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->normaFindIwswdnormaElementiListGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::DefaultApi;

my $api_instance = WWW::SwaggerClient::DefaultApi->new();
my $idLingua = idLingua_example; # String | 
my $filters = filters_example; # String | 

eval { 
    $api_instance->normaFindIwswdnormaElementiListGet(idLingua => $idLingua, filters => $filters);
};
if ($@) {
    warn "Exception when calling DefaultApi->normaFindIwswdnormaElementiListGet: $@\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.DefaultApi()
idLingua = idLingua_example # String |  (optional)
filters = filters_example # String |  (optional)

try: 
    api_instance.norma_find_iwswdnorma_elementi_list_get(idLingua=idLingua, filters=filters)
except ApiException as e:
    print("Exception when calling DefaultApi->normaFindIwswdnormaElementiListGet: %s\n" % e)

Parameters

Query parameters
Name Description
idLingua
String
filters
String

Responses

Status: 200 - OK


normaFindIwswdnormaMakerGet


/norma/findIwswdnormaMaker

Usage and SDK Samples

curl -X GET\
"http://localhost:3004//norma/findIwswdnormaMaker"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DefaultApi;

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

public class DefaultApiExample {

    public static void main(String[] args) {
        
        DefaultApi apiInstance = new DefaultApi();
        try {
            apiInstance.normaFindIwswdnormaMakerGet();
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#normaFindIwswdnormaMakerGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.DefaultApi;

public class DefaultApiExample {

    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        try {
            apiInstance.normaFindIwswdnormaMakerGet();
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#normaFindIwswdnormaMakerGet");
            e.printStackTrace();
        }
    }
}

DefaultApi *apiInstance = [[DefaultApi alloc] init];

[apiInstance normaFindIwswdnormaMakerGetWithCompletionHandler: 
              ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var 1TrueId30MakerCustomer = require('1_true_id_30_maker_customer');

var api = new 1TrueId30MakerCustomer.DefaultApi()
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.normaFindIwswdnormaMakerGet(callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new DefaultApi();

            try
            {
                apiInstance.normaFindIwswdnormaMakerGet();
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling DefaultApi.normaFindIwswdnormaMakerGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiDefaultApi();

try {
    $api_instance->normaFindIwswdnormaMakerGet();
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->normaFindIwswdnormaMakerGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::DefaultApi;

my $api_instance = WWW::SwaggerClient::DefaultApi->new();

eval { 
    $api_instance->normaFindIwswdnormaMakerGet();
};
if ($@) {
    warn "Exception when calling DefaultApi->normaFindIwswdnormaMakerGet: $@\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.DefaultApi()

try: 
    api_instance.norma_find_iwswdnorma_maker_get()
except ApiException as e:
    print("Exception when calling DefaultApi->normaFindIwswdnormaMakerGet: %s\n" % e)

Parameters

Responses

Status: 200 - OK


normaFindIwswdnormaProfileTemplatesGet


/norma/findIwswdnormaProfileTemplates

Usage and SDK Samples

curl -X GET\
"http://localhost:3004//norma/findIwswdnormaProfileTemplates?filters="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DefaultApi;

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

public class DefaultApiExample {

    public static void main(String[] args) {
        
        DefaultApi apiInstance = new DefaultApi();
        String filters = filters_example; // String | 
        try {
            apiInstance.normaFindIwswdnormaProfileTemplatesGet(filters);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#normaFindIwswdnormaProfileTemplatesGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.DefaultApi;

public class DefaultApiExample {

    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        String filters = filters_example; // String | 
        try {
            apiInstance.normaFindIwswdnormaProfileTemplatesGet(filters);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#normaFindIwswdnormaProfileTemplatesGet");
            e.printStackTrace();
        }
    }
}
String *filters = filters_example; //  (optional)

DefaultApi *apiInstance = [[DefaultApi alloc] init];

[apiInstance normaFindIwswdnormaProfileTemplatesGetWith:filters
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var 1TrueId30MakerCustomer = require('1_true_id_30_maker_customer');

var api = new 1TrueId30MakerCustomer.DefaultApi()
var opts = { 
  'filters': filters_example // {{String}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.normaFindIwswdnormaProfileTemplatesGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new DefaultApi();
            var filters = filters_example;  // String |  (optional) 

            try
            {
                apiInstance.normaFindIwswdnormaProfileTemplatesGet(filters);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling DefaultApi.normaFindIwswdnormaProfileTemplatesGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiDefaultApi();
$filters = filters_example; // String | 

try {
    $api_instance->normaFindIwswdnormaProfileTemplatesGet($filters);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->normaFindIwswdnormaProfileTemplatesGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::DefaultApi;

my $api_instance = WWW::SwaggerClient::DefaultApi->new();
my $filters = filters_example; # String | 

eval { 
    $api_instance->normaFindIwswdnormaProfileTemplatesGet(filters => $filters);
};
if ($@) {
    warn "Exception when calling DefaultApi->normaFindIwswdnormaProfileTemplatesGet: $@\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.DefaultApi()
filters = filters_example # String |  (optional)

try: 
    api_instance.norma_find_iwswdnorma_profile_templates_get(filters=filters)
except ApiException as e:
    print("Exception when calling DefaultApi->normaFindIwswdnormaProfileTemplatesGet: %s\n" % e)

Parameters

Query parameters
Name Description
filters
String

Responses

Status: 200 - OK


normaFindIwswdnormaTemplateForComboGet


/norma/findIwswdnormaTemplateForCombo

Usage and SDK Samples

curl -X GET\
"http://localhost:3004//norma/findIwswdnormaTemplateForCombo"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DefaultApi;

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

public class DefaultApiExample {

    public static void main(String[] args) {
        
        DefaultApi apiInstance = new DefaultApi();
        try {
            apiInstance.normaFindIwswdnormaTemplateForComboGet();
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#normaFindIwswdnormaTemplateForComboGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.DefaultApi;

public class DefaultApiExample {

    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        try {
            apiInstance.normaFindIwswdnormaTemplateForComboGet();
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#normaFindIwswdnormaTemplateForComboGet");
            e.printStackTrace();
        }
    }
}

DefaultApi *apiInstance = [[DefaultApi alloc] init];

[apiInstance normaFindIwswdnormaTemplateForComboGetWithCompletionHandler: 
              ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var 1TrueId30MakerCustomer = require('1_true_id_30_maker_customer');

var api = new 1TrueId30MakerCustomer.DefaultApi()
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.normaFindIwswdnormaTemplateForComboGet(callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new DefaultApi();

            try
            {
                apiInstance.normaFindIwswdnormaTemplateForComboGet();
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling DefaultApi.normaFindIwswdnormaTemplateForComboGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiDefaultApi();

try {
    $api_instance->normaFindIwswdnormaTemplateForComboGet();
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->normaFindIwswdnormaTemplateForComboGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::DefaultApi;

my $api_instance = WWW::SwaggerClient::DefaultApi->new();

eval { 
    $api_instance->normaFindIwswdnormaTemplateForComboGet();
};
if ($@) {
    warn "Exception when calling DefaultApi->normaFindIwswdnormaTemplateForComboGet: $@\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.DefaultApi()

try: 
    api_instance.norma_find_iwswdnorma_template_for_combo_get()
except ApiException as e:
    print("Exception when calling DefaultApi->normaFindIwswdnormaTemplateForComboGet: %s\n" % e)

Parameters

Responses

Status: 200 - OK


normaFindIwswdnormaTemplateGet


/norma/findIwswdnormaTemplate

Usage and SDK Samples

curl -X GET\
"http://localhost:3004//norma/findIwswdnormaTemplate?filters="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DefaultApi;

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

public class DefaultApiExample {

    public static void main(String[] args) {
        
        DefaultApi apiInstance = new DefaultApi();
        String filters = filters_example; // String | 
        try {
            apiInstance.normaFindIwswdnormaTemplateGet(filters);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#normaFindIwswdnormaTemplateGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.DefaultApi;

public class DefaultApiExample {

    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        String filters = filters_example; // String | 
        try {
            apiInstance.normaFindIwswdnormaTemplateGet(filters);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#normaFindIwswdnormaTemplateGet");
            e.printStackTrace();
        }
    }
}
String *filters = filters_example; //  (optional)

DefaultApi *apiInstance = [[DefaultApi alloc] init];

[apiInstance normaFindIwswdnormaTemplateGetWith:filters
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var 1TrueId30MakerCustomer = require('1_true_id_30_maker_customer');

var api = new 1TrueId30MakerCustomer.DefaultApi()
var opts = { 
  'filters': filters_example // {{String}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.normaFindIwswdnormaTemplateGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new DefaultApi();
            var filters = filters_example;  // String |  (optional) 

            try
            {
                apiInstance.normaFindIwswdnormaTemplateGet(filters);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling DefaultApi.normaFindIwswdnormaTemplateGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiDefaultApi();
$filters = filters_example; // String | 

try {
    $api_instance->normaFindIwswdnormaTemplateGet($filters);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->normaFindIwswdnormaTemplateGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::DefaultApi;

my $api_instance = WWW::SwaggerClient::DefaultApi->new();
my $filters = filters_example; # String | 

eval { 
    $api_instance->normaFindIwswdnormaTemplateGet(filters => $filters);
};
if ($@) {
    warn "Exception when calling DefaultApi->normaFindIwswdnormaTemplateGet: $@\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.DefaultApi()
filters = filters_example # String |  (optional)

try: 
    api_instance.norma_find_iwswdnorma_template_get(filters=filters)
except ApiException as e:
    print("Exception when calling DefaultApi->normaFindIwswdnormaTemplateGet: %s\n" % e)

Parameters

Query parameters
Name Description
filters
String

Responses

Status: 200 - OK


normaFindIwswotidObjectProfileForComboGet


/norma/findIwswotidObjectProfileForCombo

Usage and SDK Samples

curl -X GET\
"http://localhost:3004//norma/findIwswotidObjectProfileForCombo"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DefaultApi;

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

public class DefaultApiExample {

    public static void main(String[] args) {
        
        DefaultApi apiInstance = new DefaultApi();
        try {
            apiInstance.normaFindIwswotidObjectProfileForComboGet();
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#normaFindIwswotidObjectProfileForComboGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.DefaultApi;

public class DefaultApiExample {

    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        try {
            apiInstance.normaFindIwswotidObjectProfileForComboGet();
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#normaFindIwswotidObjectProfileForComboGet");
            e.printStackTrace();
        }
    }
}

DefaultApi *apiInstance = [[DefaultApi alloc] init];

[apiInstance normaFindIwswotidObjectProfileForComboGetWithCompletionHandler: 
              ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var 1TrueId30MakerCustomer = require('1_true_id_30_maker_customer');

var api = new 1TrueId30MakerCustomer.DefaultApi()
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.normaFindIwswotidObjectProfileForComboGet(callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new DefaultApi();

            try
            {
                apiInstance.normaFindIwswotidObjectProfileForComboGet();
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling DefaultApi.normaFindIwswotidObjectProfileForComboGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiDefaultApi();

try {
    $api_instance->normaFindIwswotidObjectProfileForComboGet();
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->normaFindIwswotidObjectProfileForComboGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::DefaultApi;

my $api_instance = WWW::SwaggerClient::DefaultApi->new();

eval { 
    $api_instance->normaFindIwswotidObjectProfileForComboGet();
};
if ($@) {
    warn "Exception when calling DefaultApi->normaFindIwswotidObjectProfileForComboGet: $@\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.DefaultApi()

try: 
    api_instance.norma_find_iwswotid_object_profile_for_combo_get()
except ApiException as e:
    print("Exception when calling DefaultApi->normaFindIwswotidObjectProfileForComboGet: %s\n" % e)

Parameters

Responses

Status: 200 - OK


normaFindIwswotidObjectProfileGet


/norma/findIwswotidObjectProfile

Usage and SDK Samples

curl -X GET\
"http://localhost:3004//norma/findIwswotidObjectProfile?filters="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DefaultApi;

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

public class DefaultApiExample {

    public static void main(String[] args) {
        
        DefaultApi apiInstance = new DefaultApi();
        String filters = filters_example; // String | 
        try {
            apiInstance.normaFindIwswotidObjectProfileGet(filters);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#normaFindIwswotidObjectProfileGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.DefaultApi;

public class DefaultApiExample {

    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        String filters = filters_example; // String | 
        try {
            apiInstance.normaFindIwswotidObjectProfileGet(filters);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#normaFindIwswotidObjectProfileGet");
            e.printStackTrace();
        }
    }
}
String *filters = filters_example; //  (optional)

DefaultApi *apiInstance = [[DefaultApi alloc] init];

[apiInstance normaFindIwswotidObjectProfileGetWith:filters
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var 1TrueId30MakerCustomer = require('1_true_id_30_maker_customer');

var api = new 1TrueId30MakerCustomer.DefaultApi()
var opts = { 
  'filters': filters_example // {{String}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.normaFindIwswotidObjectProfileGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new DefaultApi();
            var filters = filters_example;  // String |  (optional) 

            try
            {
                apiInstance.normaFindIwswotidObjectProfileGet(filters);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling DefaultApi.normaFindIwswotidObjectProfileGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiDefaultApi();
$filters = filters_example; // String | 

try {
    $api_instance->normaFindIwswotidObjectProfileGet($filters);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->normaFindIwswotidObjectProfileGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::DefaultApi;

my $api_instance = WWW::SwaggerClient::DefaultApi->new();
my $filters = filters_example; # String | 

eval { 
    $api_instance->normaFindIwswotidObjectProfileGet(filters => $filters);
};
if ($@) {
    warn "Exception when calling DefaultApi->normaFindIwswotidObjectProfileGet: $@\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.DefaultApi()
filters = filters_example # String |  (optional)

try: 
    api_instance.norma_find_iwswotid_object_profile_get(filters=filters)
except ApiException as e:
    print("Exception when calling DefaultApi->normaFindIwswotidObjectProfileGet: %s\n" % e)

Parameters

Query parameters
Name Description
filters
String

Responses

Status: 200 - OK


normaGetTemplateInfoGet


/norma/getTemplateInfo

Usage and SDK Samples

curl -X GET\
"http://localhost:3004//norma/getTemplateInfo?id_template=&lingua="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DefaultApi;

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

public class DefaultApiExample {

    public static void main(String[] args) {
        
        DefaultApi apiInstance = new DefaultApi();
        String idTemplate = idTemplate_example; // String | 
        String lingua = lingua_example; // String | 
        try {
            apiInstance.normaGetTemplateInfoGet(idTemplate, lingua);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#normaGetTemplateInfoGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.DefaultApi;

public class DefaultApiExample {

    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        String idTemplate = idTemplate_example; // String | 
        String lingua = lingua_example; // String | 
        try {
            apiInstance.normaGetTemplateInfoGet(idTemplate, lingua);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#normaGetTemplateInfoGet");
            e.printStackTrace();
        }
    }
}
String *idTemplate = idTemplate_example; //  (optional)
String *lingua = lingua_example; //  (optional)

DefaultApi *apiInstance = [[DefaultApi alloc] init];

[apiInstance normaGetTemplateInfoGetWith:idTemplate
    lingua:lingua
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var 1TrueId30MakerCustomer = require('1_true_id_30_maker_customer');

var api = new 1TrueId30MakerCustomer.DefaultApi()
var opts = { 
  'idTemplate': idTemplate_example, // {{String}} 
  'lingua': lingua_example // {{String}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.normaGetTemplateInfoGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new DefaultApi();
            var idTemplate = idTemplate_example;  // String |  (optional) 
            var lingua = lingua_example;  // String |  (optional) 

            try
            {
                apiInstance.normaGetTemplateInfoGet(idTemplate, lingua);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling DefaultApi.normaGetTemplateInfoGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiDefaultApi();
$idTemplate = idTemplate_example; // String | 
$lingua = lingua_example; // String | 

try {
    $api_instance->normaGetTemplateInfoGet($idTemplate, $lingua);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->normaGetTemplateInfoGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::DefaultApi;

my $api_instance = WWW::SwaggerClient::DefaultApi->new();
my $idTemplate = idTemplate_example; # String | 
my $lingua = lingua_example; # String | 

eval { 
    $api_instance->normaGetTemplateInfoGet(idTemplate => $idTemplate, lingua => $lingua);
};
if ($@) {
    warn "Exception when calling DefaultApi->normaGetTemplateInfoGet: $@\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.DefaultApi()
idTemplate = idTemplate_example # String |  (optional)
lingua = lingua_example # String |  (optional)

try: 
    api_instance.norma_get_template_info_get(idTemplate=idTemplate, lingua=lingua)
except ApiException as e:
    print("Exception when calling DefaultApi->normaGetTemplateInfoGet: %s\n" % e)

Parameters

Query parameters
Name Description
id_template
String
lingua
String

Responses

Status: 200 - OK


normaGetTemplateProfileInfoGet


/norma/getTemplateProfileInfo

Usage and SDK Samples

curl -X GET\
"http://localhost:3004//norma/getTemplateProfileInfo?idProfileTemplate=&lingua=&idProfile="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DefaultApi;

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

public class DefaultApiExample {

    public static void main(String[] args) {
        
        DefaultApi apiInstance = new DefaultApi();
        String idProfileTemplate = idProfileTemplate_example; // String | 
        String lingua = lingua_example; // String | 
        String idProfile = idProfile_example; // String | 
        try {
            apiInstance.normaGetTemplateProfileInfoGet(idProfileTemplate, lingua, idProfile);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#normaGetTemplateProfileInfoGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.DefaultApi;

public class DefaultApiExample {

    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        String idProfileTemplate = idProfileTemplate_example; // String | 
        String lingua = lingua_example; // String | 
        String idProfile = idProfile_example; // String | 
        try {
            apiInstance.normaGetTemplateProfileInfoGet(idProfileTemplate, lingua, idProfile);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#normaGetTemplateProfileInfoGet");
            e.printStackTrace();
        }
    }
}
String *idProfileTemplate = idProfileTemplate_example; //  (optional)
String *lingua = lingua_example; //  (optional)
String *idProfile = idProfile_example; //  (optional)

DefaultApi *apiInstance = [[DefaultApi alloc] init];

[apiInstance normaGetTemplateProfileInfoGetWith:idProfileTemplate
    lingua:lingua
    idProfile:idProfile
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var 1TrueId30MakerCustomer = require('1_true_id_30_maker_customer');

var api = new 1TrueId30MakerCustomer.DefaultApi()
var opts = { 
  'idProfileTemplate': idProfileTemplate_example, // {{String}} 
  'lingua': lingua_example, // {{String}} 
  'idProfile': idProfile_example // {{String}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.normaGetTemplateProfileInfoGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new DefaultApi();
            var idProfileTemplate = idProfileTemplate_example;  // String |  (optional) 
            var lingua = lingua_example;  // String |  (optional) 
            var idProfile = idProfile_example;  // String |  (optional) 

            try
            {
                apiInstance.normaGetTemplateProfileInfoGet(idProfileTemplate, lingua, idProfile);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling DefaultApi.normaGetTemplateProfileInfoGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiDefaultApi();
$idProfileTemplate = idProfileTemplate_example; // String | 
$lingua = lingua_example; // String | 
$idProfile = idProfile_example; // String | 

try {
    $api_instance->normaGetTemplateProfileInfoGet($idProfileTemplate, $lingua, $idProfile);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->normaGetTemplateProfileInfoGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::DefaultApi;

my $api_instance = WWW::SwaggerClient::DefaultApi->new();
my $idProfileTemplate = idProfileTemplate_example; # String | 
my $lingua = lingua_example; # String | 
my $idProfile = idProfile_example; # String | 

eval { 
    $api_instance->normaGetTemplateProfileInfoGet(idProfileTemplate => $idProfileTemplate, lingua => $lingua, idProfile => $idProfile);
};
if ($@) {
    warn "Exception when calling DefaultApi->normaGetTemplateProfileInfoGet: $@\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.DefaultApi()
idProfileTemplate = idProfileTemplate_example # String |  (optional)
lingua = lingua_example # String |  (optional)
idProfile = idProfile_example # String |  (optional)

try: 
    api_instance.norma_get_template_profile_info_get(idProfileTemplate=idProfileTemplate, lingua=lingua, idProfile=idProfile)
except ApiException as e:
    print("Exception when calling DefaultApi->normaGetTemplateProfileInfoGet: %s\n" % e)

Parameters

Query parameters
Name Description
idProfileTemplate
String
lingua
String
idProfile
String

Responses

Status: 200 - OK


normaInsertNewTemplatePost


/norma/insertNewTemplate

Usage and SDK Samples

curl -X POST\
-H "Content-Type: application/json"\
"http://localhost:3004//norma/insertNewTemplate"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DefaultApi;

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

public class DefaultApiExample {

    public static void main(String[] args) {
        
        DefaultApi apiInstance = new DefaultApi();
        Norma_insertNewTemplate_body body = ; // Norma_insertNewTemplate_body | 
        try {
            apiInstance.normaInsertNewTemplatePost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#normaInsertNewTemplatePost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.DefaultApi;

public class DefaultApiExample {

    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        Norma_insertNewTemplate_body body = ; // Norma_insertNewTemplate_body | 
        try {
            apiInstance.normaInsertNewTemplatePost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#normaInsertNewTemplatePost");
            e.printStackTrace();
        }
    }
}
Norma_insertNewTemplate_body *body = ; //  (optional)

DefaultApi *apiInstance = [[DefaultApi alloc] init];

[apiInstance normaInsertNewTemplatePostWith:body
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var 1TrueId30MakerCustomer = require('1_true_id_30_maker_customer');

var api = new 1TrueId30MakerCustomer.DefaultApi()
var opts = { 
  'body':  // {{Norma_insertNewTemplate_body}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.normaInsertNewTemplatePost(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new DefaultApi();
            var body = new Norma_insertNewTemplate_body(); // Norma_insertNewTemplate_body |  (optional) 

            try
            {
                apiInstance.normaInsertNewTemplatePost(body);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling DefaultApi.normaInsertNewTemplatePost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiDefaultApi();
$body = ; // Norma_insertNewTemplate_body | 

try {
    $api_instance->normaInsertNewTemplatePost($body);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->normaInsertNewTemplatePost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::DefaultApi;

my $api_instance = WWW::SwaggerClient::DefaultApi->new();
my $body = WWW::SwaggerClient::Object::Norma_insertNewTemplate_body->new(); # Norma_insertNewTemplate_body | 

eval { 
    $api_instance->normaInsertNewTemplatePost(body => $body);
};
if ($@) {
    warn "Exception when calling DefaultApi->normaInsertNewTemplatePost: $@\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.DefaultApi()
body =  # Norma_insertNewTemplate_body |  (optional)

try: 
    api_instance.norma_insert_new_template_post(body=body)
except ApiException as e:
    print("Exception when calling DefaultApi->normaInsertNewTemplatePost: %s\n" % e)

Parameters

Body parameters
Name Description
body

Responses

Status: 200 - OK


normaUpdateValuesTemplatePost


/norma/updateValuesTemplate

Usage and SDK Samples

curl -X POST\
-H "Content-Type: application/json"\
"http://localhost:3004//norma/updateValuesTemplate"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DefaultApi;

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

public class DefaultApiExample {

    public static void main(String[] args) {
        
        DefaultApi apiInstance = new DefaultApi();
        Norma_updateValuesTemplate_body body = ; // Norma_updateValuesTemplate_body | 
        try {
            apiInstance.normaUpdateValuesTemplatePost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#normaUpdateValuesTemplatePost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.DefaultApi;

public class DefaultApiExample {

    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        Norma_updateValuesTemplate_body body = ; // Norma_updateValuesTemplate_body | 
        try {
            apiInstance.normaUpdateValuesTemplatePost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#normaUpdateValuesTemplatePost");
            e.printStackTrace();
        }
    }
}
Norma_updateValuesTemplate_body *body = ; //  (optional)

DefaultApi *apiInstance = [[DefaultApi alloc] init];

[apiInstance normaUpdateValuesTemplatePostWith:body
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var 1TrueId30MakerCustomer = require('1_true_id_30_maker_customer');

var api = new 1TrueId30MakerCustomer.DefaultApi()
var opts = { 
  'body':  // {{Norma_updateValuesTemplate_body}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.normaUpdateValuesTemplatePost(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new DefaultApi();
            var body = new Norma_updateValuesTemplate_body(); // Norma_updateValuesTemplate_body |  (optional) 

            try
            {
                apiInstance.normaUpdateValuesTemplatePost(body);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling DefaultApi.normaUpdateValuesTemplatePost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiDefaultApi();
$body = ; // Norma_updateValuesTemplate_body | 

try {
    $api_instance->normaUpdateValuesTemplatePost($body);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->normaUpdateValuesTemplatePost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::DefaultApi;

my $api_instance = WWW::SwaggerClient::DefaultApi->new();
my $body = WWW::SwaggerClient::Object::Norma_updateValuesTemplate_body->new(); # Norma_updateValuesTemplate_body | 

eval { 
    $api_instance->normaUpdateValuesTemplatePost(body => $body);
};
if ($@) {
    warn "Exception when calling DefaultApi->normaUpdateValuesTemplatePost: $@\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.DefaultApi()
body =  # Norma_updateValuesTemplate_body |  (optional)

try: 
    api_instance.norma_update_values_template_post(body=body)
except ApiException as e:
    print("Exception when calling DefaultApi->normaUpdateValuesTemplatePost: %s\n" % e)

Parameters

Body parameters
Name Description
body

Responses

Status: 200 - OK


normaUpdateValuesTemplateProfilePost


/norma/updateValuesTemplateProfile

Usage and SDK Samples

curl -X POST\
-H "Content-Type: application/json"\
"http://localhost:3004//norma/updateValuesTemplateProfile"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DefaultApi;

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

public class DefaultApiExample {

    public static void main(String[] args) {
        
        DefaultApi apiInstance = new DefaultApi();
        Norma_updateValuesTemplateProfile_body body = ; // Norma_updateValuesTemplateProfile_body | 
        try {
            apiInstance.normaUpdateValuesTemplateProfilePost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#normaUpdateValuesTemplateProfilePost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.DefaultApi;

public class DefaultApiExample {

    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        Norma_updateValuesTemplateProfile_body body = ; // Norma_updateValuesTemplateProfile_body | 
        try {
            apiInstance.normaUpdateValuesTemplateProfilePost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#normaUpdateValuesTemplateProfilePost");
            e.printStackTrace();
        }
    }
}
Norma_updateValuesTemplateProfile_body *body = ; //  (optional)

DefaultApi *apiInstance = [[DefaultApi alloc] init];

[apiInstance normaUpdateValuesTemplateProfilePostWith:body
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var 1TrueId30MakerCustomer = require('1_true_id_30_maker_customer');

var api = new 1TrueId30MakerCustomer.DefaultApi()
var opts = { 
  'body':  // {{Norma_updateValuesTemplateProfile_body}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.normaUpdateValuesTemplateProfilePost(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new DefaultApi();
            var body = new Norma_updateValuesTemplateProfile_body(); // Norma_updateValuesTemplateProfile_body |  (optional) 

            try
            {
                apiInstance.normaUpdateValuesTemplateProfilePost(body);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling DefaultApi.normaUpdateValuesTemplateProfilePost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiDefaultApi();
$body = ; // Norma_updateValuesTemplateProfile_body | 

try {
    $api_instance->normaUpdateValuesTemplateProfilePost($body);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->normaUpdateValuesTemplateProfilePost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::DefaultApi;

my $api_instance = WWW::SwaggerClient::DefaultApi->new();
my $body = WWW::SwaggerClient::Object::Norma_updateValuesTemplateProfile_body->new(); # Norma_updateValuesTemplateProfile_body | 

eval { 
    $api_instance->normaUpdateValuesTemplateProfilePost(body => $body);
};
if ($@) {
    warn "Exception when calling DefaultApi->normaUpdateValuesTemplateProfilePost: $@\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.DefaultApi()
body =  # Norma_updateValuesTemplateProfile_body |  (optional)

try: 
    api_instance.norma_update_values_template_profile_post(body=body)
except ApiException as e:
    print("Exception when calling DefaultApi->normaUpdateValuesTemplateProfilePost: %s\n" % e)

Parameters

Body parameters
Name Description
body

Responses

Status: 200 - OK


oauthUserIsAuthenticatedGet


/oauth/user/is-authenticated

Usage and SDK Samples

curl -X GET\
"http://localhost:3004//oauth/user/is-authenticated"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DefaultApi;

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

public class DefaultApiExample {

    public static void main(String[] args) {
        
        DefaultApi apiInstance = new DefaultApi();
        try {
            apiInstance.oauthUserIsAuthenticatedGet();
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#oauthUserIsAuthenticatedGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.DefaultApi;

public class DefaultApiExample {

    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        try {
            apiInstance.oauthUserIsAuthenticatedGet();
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#oauthUserIsAuthenticatedGet");
            e.printStackTrace();
        }
    }
}

DefaultApi *apiInstance = [[DefaultApi alloc] init];

[apiInstance oauthUserIsAuthenticatedGetWithCompletionHandler: 
              ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var 1TrueId30MakerCustomer = require('1_true_id_30_maker_customer');

var api = new 1TrueId30MakerCustomer.DefaultApi()
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.oauthUserIsAuthenticatedGet(callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new DefaultApi();

            try
            {
                apiInstance.oauthUserIsAuthenticatedGet();
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling DefaultApi.oauthUserIsAuthenticatedGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiDefaultApi();

try {
    $api_instance->oauthUserIsAuthenticatedGet();
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->oauthUserIsAuthenticatedGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::DefaultApi;

my $api_instance = WWW::SwaggerClient::DefaultApi->new();

eval { 
    $api_instance->oauthUserIsAuthenticatedGet();
};
if ($@) {
    warn "Exception when calling DefaultApi->oauthUserIsAuthenticatedGet: $@\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.DefaultApi()

try: 
    api_instance.oauth_user_is_authenticated_get()
except ApiException as e:
    print("Exception when calling DefaultApi->oauthUserIsAuthenticatedGet: %s\n" % e)

Parameters

Responses

Status: 200 - OK


otiWalletGeneratWalletAddressGet


/otiWallet/generatWalletAddress

Usage and SDK Samples

curl -X GET\
"http://localhost:3004//otiWallet/generatWalletAddress"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DefaultApi;

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

public class DefaultApiExample {

    public static void main(String[] args) {
        
        DefaultApi apiInstance = new DefaultApi();
        try {
            apiInstance.otiWalletGeneratWalletAddressGet();
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#otiWalletGeneratWalletAddressGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.DefaultApi;

public class DefaultApiExample {

    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        try {
            apiInstance.otiWalletGeneratWalletAddressGet();
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#otiWalletGeneratWalletAddressGet");
            e.printStackTrace();
        }
    }
}

DefaultApi *apiInstance = [[DefaultApi alloc] init];

[apiInstance otiWalletGeneratWalletAddressGetWithCompletionHandler: 
              ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var 1TrueId30MakerCustomer = require('1_true_id_30_maker_customer');

var api = new 1TrueId30MakerCustomer.DefaultApi()
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.otiWalletGeneratWalletAddressGet(callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new DefaultApi();

            try
            {
                apiInstance.otiWalletGeneratWalletAddressGet();
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling DefaultApi.otiWalletGeneratWalletAddressGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiDefaultApi();

try {
    $api_instance->otiWalletGeneratWalletAddressGet();
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->otiWalletGeneratWalletAddressGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::DefaultApi;

my $api_instance = WWW::SwaggerClient::DefaultApi->new();

eval { 
    $api_instance->otiWalletGeneratWalletAddressGet();
};
if ($@) {
    warn "Exception when calling DefaultApi->otiWalletGeneratWalletAddressGet: $@\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.DefaultApi()

try: 
    api_instance.oti_wallet_generat_wallet_address_get()
except ApiException as e:
    print("Exception when calling DefaultApi->otiWalletGeneratWalletAddressGet: %s\n" % e)

Parameters

Responses

Status: default -


otiWalletGetWalletAddressesBalanceGet


/otiWallet/getWalletAddressesBalance

Usage and SDK Samples

curl -X GET\
"http://localhost:3004//otiWallet/getWalletAddressesBalance"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DefaultApi;

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

public class DefaultApiExample {

    public static void main(String[] args) {
        
        DefaultApi apiInstance = new DefaultApi();
        try {
            apiInstance.otiWalletGetWalletAddressesBalanceGet();
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#otiWalletGetWalletAddressesBalanceGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.DefaultApi;

public class DefaultApiExample {

    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        try {
            apiInstance.otiWalletGetWalletAddressesBalanceGet();
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#otiWalletGetWalletAddressesBalanceGet");
            e.printStackTrace();
        }
    }
}

DefaultApi *apiInstance = [[DefaultApi alloc] init];

[apiInstance otiWalletGetWalletAddressesBalanceGetWithCompletionHandler: 
              ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var 1TrueId30MakerCustomer = require('1_true_id_30_maker_customer');

var api = new 1TrueId30MakerCustomer.DefaultApi()
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.otiWalletGetWalletAddressesBalanceGet(callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new DefaultApi();

            try
            {
                apiInstance.otiWalletGetWalletAddressesBalanceGet();
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling DefaultApi.otiWalletGetWalletAddressesBalanceGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiDefaultApi();

try {
    $api_instance->otiWalletGetWalletAddressesBalanceGet();
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->otiWalletGetWalletAddressesBalanceGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::DefaultApi;

my $api_instance = WWW::SwaggerClient::DefaultApi->new();

eval { 
    $api_instance->otiWalletGetWalletAddressesBalanceGet();
};
if ($@) {
    warn "Exception when calling DefaultApi->otiWalletGetWalletAddressesBalanceGet: $@\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.DefaultApi()

try: 
    api_instance.oti_wallet_get_wallet_addresses_balance_get()
except ApiException as e:
    print("Exception when calling DefaultApi->otiWalletGetWalletAddressesBalanceGet: %s\n" % e)

Parameters

Responses

Status: default -


otiWalletGetWalletBalanceGet


/otiWallet/getWalletBalance

Usage and SDK Samples

curl -X GET\
"http://localhost:3004//otiWallet/getWalletBalance"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DefaultApi;

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

public class DefaultApiExample {

    public static void main(String[] args) {
        
        DefaultApi apiInstance = new DefaultApi();
        try {
            apiInstance.otiWalletGetWalletBalanceGet();
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#otiWalletGetWalletBalanceGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.DefaultApi;

public class DefaultApiExample {

    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        try {
            apiInstance.otiWalletGetWalletBalanceGet();
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#otiWalletGetWalletBalanceGet");
            e.printStackTrace();
        }
    }
}

DefaultApi *apiInstance = [[DefaultApi alloc] init];

[apiInstance otiWalletGetWalletBalanceGetWithCompletionHandler: 
              ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var 1TrueId30MakerCustomer = require('1_true_id_30_maker_customer');

var api = new 1TrueId30MakerCustomer.DefaultApi()
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.otiWalletGetWalletBalanceGet(callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new DefaultApi();

            try
            {
                apiInstance.otiWalletGetWalletBalanceGet();
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling DefaultApi.otiWalletGetWalletBalanceGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiDefaultApi();

try {
    $api_instance->otiWalletGetWalletBalanceGet();
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->otiWalletGetWalletBalanceGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::DefaultApi;

my $api_instance = WWW::SwaggerClient::DefaultApi->new();

eval { 
    $api_instance->otiWalletGetWalletBalanceGet();
};
if ($@) {
    warn "Exception when calling DefaultApi->otiWalletGetWalletBalanceGet: $@\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.DefaultApi()

try: 
    api_instance.oti_wallet_get_wallet_balance_get()
except ApiException as e:
    print("Exception when calling DefaultApi->otiWalletGetWalletBalanceGet: %s\n" % e)

Parameters

Responses

Status: default -


otiWalletGetWalletInfoGet


/otiWallet/getWalletInfo

Usage and SDK Samples

curl -X GET\
"http://localhost:3004//otiWallet/getWalletInfo"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DefaultApi;

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

public class DefaultApiExample {

    public static void main(String[] args) {
        
        DefaultApi apiInstance = new DefaultApi();
        try {
            apiInstance.otiWalletGetWalletInfoGet();
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#otiWalletGetWalletInfoGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.DefaultApi;

public class DefaultApiExample {

    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        try {
            apiInstance.otiWalletGetWalletInfoGet();
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#otiWalletGetWalletInfoGet");
            e.printStackTrace();
        }
    }
}

DefaultApi *apiInstance = [[DefaultApi alloc] init];

[apiInstance otiWalletGetWalletInfoGetWithCompletionHandler: 
              ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var 1TrueId30MakerCustomer = require('1_true_id_30_maker_customer');

var api = new 1TrueId30MakerCustomer.DefaultApi()
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.otiWalletGetWalletInfoGet(callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new DefaultApi();

            try
            {
                apiInstance.otiWalletGetWalletInfoGet();
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling DefaultApi.otiWalletGetWalletInfoGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiDefaultApi();

try {
    $api_instance->otiWalletGetWalletInfoGet();
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->otiWalletGetWalletInfoGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::DefaultApi;

my $api_instance = WWW::SwaggerClient::DefaultApi->new();

eval { 
    $api_instance->otiWalletGetWalletInfoGet();
};
if ($@) {
    warn "Exception when calling DefaultApi->otiWalletGetWalletInfoGet: $@\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.DefaultApi()

try: 
    api_instance.oti_wallet_get_wallet_info_get()
except ApiException as e:
    print("Exception when calling DefaultApi->otiWalletGetWalletInfoGet: %s\n" % e)

Parameters

Responses

Status: default -


printFinalCheckGet


/print/finalCheck

Usage and SDK Samples

curl -X GET\
"http://localhost:3004//print/finalCheck"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DefaultApi;

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

public class DefaultApiExample {

    public static void main(String[] args) {
        
        DefaultApi apiInstance = new DefaultApi();
        try {
            apiInstance.printFinalCheckGet();
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#printFinalCheckGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.DefaultApi;

public class DefaultApiExample {

    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        try {
            apiInstance.printFinalCheckGet();
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#printFinalCheckGet");
            e.printStackTrace();
        }
    }
}

DefaultApi *apiInstance = [[DefaultApi alloc] init];

[apiInstance printFinalCheckGetWithCompletionHandler: 
              ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var 1TrueId30MakerCustomer = require('1_true_id_30_maker_customer');

var api = new 1TrueId30MakerCustomer.DefaultApi()
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.printFinalCheckGet(callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new DefaultApi();

            try
            {
                apiInstance.printFinalCheckGet();
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling DefaultApi.printFinalCheckGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiDefaultApi();

try {
    $api_instance->printFinalCheckGet();
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->printFinalCheckGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::DefaultApi;

my $api_instance = WWW::SwaggerClient::DefaultApi->new();

eval { 
    $api_instance->printFinalCheckGet();
};
if ($@) {
    warn "Exception when calling DefaultApi->printFinalCheckGet: $@\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.DefaultApi()

try: 
    api_instance.print_final_check_get()
except ApiException as e:
    print("Exception when calling DefaultApi->printFinalCheckGet: %s\n" % e)

Parameters

Responses

Status: 200 - OK


printGetQtaEtichetteGet


/print/getQtaEtichette

Usage and SDK Samples

curl -X GET\
"http://localhost:3004//print/getQtaEtichette"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DefaultApi;

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

public class DefaultApiExample {

    public static void main(String[] args) {
        
        DefaultApi apiInstance = new DefaultApi();
        try {
            apiInstance.printGetQtaEtichetteGet();
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#printGetQtaEtichetteGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.DefaultApi;

public class DefaultApiExample {

    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        try {
            apiInstance.printGetQtaEtichetteGet();
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#printGetQtaEtichetteGet");
            e.printStackTrace();
        }
    }
}

DefaultApi *apiInstance = [[DefaultApi alloc] init];

[apiInstance printGetQtaEtichetteGetWithCompletionHandler: 
              ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var 1TrueId30MakerCustomer = require('1_true_id_30_maker_customer');

var api = new 1TrueId30MakerCustomer.DefaultApi()
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.printGetQtaEtichetteGet(callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new DefaultApi();

            try
            {
                apiInstance.printGetQtaEtichetteGet();
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling DefaultApi.printGetQtaEtichetteGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiDefaultApi();

try {
    $api_instance->printGetQtaEtichetteGet();
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->printGetQtaEtichetteGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::DefaultApi;

my $api_instance = WWW::SwaggerClient::DefaultApi->new();

eval { 
    $api_instance->printGetQtaEtichetteGet();
};
if ($@) {
    warn "Exception when calling DefaultApi->printGetQtaEtichetteGet: $@\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.DefaultApi()

try: 
    api_instance.print_get_qta_etichette_get()
except ApiException as e:
    print("Exception when calling DefaultApi->printGetQtaEtichetteGet: %s\n" % e)

Parameters

Responses

Status: 200 - OK


printReprintQRPost


/print/reprintQR

Usage and SDK Samples

curl -X POST\
"http://localhost:3004//print/reprintQR"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DefaultApi;

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

public class DefaultApiExample {

    public static void main(String[] args) {
        
        DefaultApi apiInstance = new DefaultApi();
        try {
            apiInstance.printReprintQRPost();
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#printReprintQRPost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.DefaultApi;

public class DefaultApiExample {

    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        try {
            apiInstance.printReprintQRPost();
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#printReprintQRPost");
            e.printStackTrace();
        }
    }
}

DefaultApi *apiInstance = [[DefaultApi alloc] init];

[apiInstance printReprintQRPostWithCompletionHandler: 
              ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var 1TrueId30MakerCustomer = require('1_true_id_30_maker_customer');

var api = new 1TrueId30MakerCustomer.DefaultApi()
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.printReprintQRPost(callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new DefaultApi();

            try
            {
                apiInstance.printReprintQRPost();
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling DefaultApi.printReprintQRPost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiDefaultApi();

try {
    $api_instance->printReprintQRPost();
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->printReprintQRPost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::DefaultApi;

my $api_instance = WWW::SwaggerClient::DefaultApi->new();

eval { 
    $api_instance->printReprintQRPost();
};
if ($@) {
    warn "Exception when calling DefaultApi->printReprintQRPost: $@\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.DefaultApi()

try: 
    api_instance.print_reprint_qr_post()
except ApiException as e:
    print("Exception when calling DefaultApi->printReprintQRPost: %s\n" % e)

Parameters

Responses

Status: 200 - OK


productFindIwswotidObjectsGet


/product/findIwswotidObjects/

Usage and SDK Samples

curl -X GET\
"http://localhost:3004//product/findIwswotidObjects/?filters="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DefaultApi;

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

public class DefaultApiExample {

    public static void main(String[] args) {
        
        DefaultApi apiInstance = new DefaultApi();
        String filters = filters_example; // String | 
        try {
            apiInstance.productFindIwswotidObjectsGet(filters);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#productFindIwswotidObjectsGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.DefaultApi;

public class DefaultApiExample {

    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        String filters = filters_example; // String | 
        try {
            apiInstance.productFindIwswotidObjectsGet(filters);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#productFindIwswotidObjectsGet");
            e.printStackTrace();
        }
    }
}
String *filters = filters_example; //  (optional)

DefaultApi *apiInstance = [[DefaultApi alloc] init];

[apiInstance productFindIwswotidObjectsGetWith:filters
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var 1TrueId30MakerCustomer = require('1_true_id_30_maker_customer');

var api = new 1TrueId30MakerCustomer.DefaultApi()
var opts = { 
  'filters': filters_example // {{String}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.productFindIwswotidObjectsGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new DefaultApi();
            var filters = filters_example;  // String |  (optional) 

            try
            {
                apiInstance.productFindIwswotidObjectsGet(filters);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling DefaultApi.productFindIwswotidObjectsGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiDefaultApi();
$filters = filters_example; // String | 

try {
    $api_instance->productFindIwswotidObjectsGet($filters);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->productFindIwswotidObjectsGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::DefaultApi;

my $api_instance = WWW::SwaggerClient::DefaultApi->new();
my $filters = filters_example; # String | 

eval { 
    $api_instance->productFindIwswotidObjectsGet(filters => $filters);
};
if ($@) {
    warn "Exception when calling DefaultApi->productFindIwswotidObjectsGet: $@\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.DefaultApi()
filters = filters_example # String |  (optional)

try: 
    api_instance.product_find_iwswotid_objects_get(filters=filters)
except ApiException as e:
    print("Exception when calling DefaultApi->productFindIwswotidObjectsGet: %s\n" % e)

Parameters

Query parameters
Name Description
filters
String

Responses

Status: 200 - OK


productGetObjectsByIdProfileForComboGet


/product/getObjectsByIdProfileForCombo/

Usage and SDK Samples

curl -X GET\
"http://localhost:3004//product/getObjectsByIdProfileForCombo/?filters="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DefaultApi;

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

public class DefaultApiExample {

    public static void main(String[] args) {
        
        DefaultApi apiInstance = new DefaultApi();
        String filters = filters_example; // String | 
        try {
            apiInstance.productGetObjectsByIdProfileForComboGet(filters);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#productGetObjectsByIdProfileForComboGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.DefaultApi;

public class DefaultApiExample {

    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        String filters = filters_example; // String | 
        try {
            apiInstance.productGetObjectsByIdProfileForComboGet(filters);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#productGetObjectsByIdProfileForComboGet");
            e.printStackTrace();
        }
    }
}
String *filters = filters_example; //  (optional)

DefaultApi *apiInstance = [[DefaultApi alloc] init];

[apiInstance productGetObjectsByIdProfileForComboGetWith:filters
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var 1TrueId30MakerCustomer = require('1_true_id_30_maker_customer');

var api = new 1TrueId30MakerCustomer.DefaultApi()
var opts = { 
  'filters': filters_example // {{String}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.productGetObjectsByIdProfileForComboGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new DefaultApi();
            var filters = filters_example;  // String |  (optional) 

            try
            {
                apiInstance.productGetObjectsByIdProfileForComboGet(filters);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling DefaultApi.productGetObjectsByIdProfileForComboGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiDefaultApi();
$filters = filters_example; // String | 

try {
    $api_instance->productGetObjectsByIdProfileForComboGet($filters);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->productGetObjectsByIdProfileForComboGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::DefaultApi;

my $api_instance = WWW::SwaggerClient::DefaultApi->new();
my $filters = filters_example; # String | 

eval { 
    $api_instance->productGetObjectsByIdProfileForComboGet(filters => $filters);
};
if ($@) {
    warn "Exception when calling DefaultApi->productGetObjectsByIdProfileForComboGet: $@\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.DefaultApi()
filters = filters_example # String |  (optional)

try: 
    api_instance.product_get_objects_by_id_profile_for_combo_get(filters=filters)
except ApiException as e:
    print("Exception when calling DefaultApi->productGetObjectsByIdProfileForComboGet: %s\n" % e)

Parameters

Query parameters
Name Description
filters
String

Responses

Status: 200 - OK


productGetObjectsByIdProfileGet


/product/getObjectsByIdProfile/

Usage and SDK Samples

curl -X GET\
"http://localhost:3004//product/getObjectsByIdProfile/?filters="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DefaultApi;

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

public class DefaultApiExample {

    public static void main(String[] args) {
        
        DefaultApi apiInstance = new DefaultApi();
        String filters = filters_example; // String | 
        try {
            apiInstance.productGetObjectsByIdProfileGet(filters);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#productGetObjectsByIdProfileGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.DefaultApi;

public class DefaultApiExample {

    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        String filters = filters_example; // String | 
        try {
            apiInstance.productGetObjectsByIdProfileGet(filters);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#productGetObjectsByIdProfileGet");
            e.printStackTrace();
        }
    }
}
String *filters = filters_example; //  (optional)

DefaultApi *apiInstance = [[DefaultApi alloc] init];

[apiInstance productGetObjectsByIdProfileGetWith:filters
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var 1TrueId30MakerCustomer = require('1_true_id_30_maker_customer');

var api = new 1TrueId30MakerCustomer.DefaultApi()
var opts = { 
  'filters': filters_example // {{String}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.productGetObjectsByIdProfileGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new DefaultApi();
            var filters = filters_example;  // String |  (optional) 

            try
            {
                apiInstance.productGetObjectsByIdProfileGet(filters);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling DefaultApi.productGetObjectsByIdProfileGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiDefaultApi();
$filters = filters_example; // String | 

try {
    $api_instance->productGetObjectsByIdProfileGet($filters);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->productGetObjectsByIdProfileGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::DefaultApi;

my $api_instance = WWW::SwaggerClient::DefaultApi->new();
my $filters = filters_example; # String | 

eval { 
    $api_instance->productGetObjectsByIdProfileGet(filters => $filters);
};
if ($@) {
    warn "Exception when calling DefaultApi->productGetObjectsByIdProfileGet: $@\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.DefaultApi()
filters = filters_example # String |  (optional)

try: 
    api_instance.product_get_objects_by_id_profile_get(filters=filters)
except ApiException as e:
    print("Exception when calling DefaultApi->productGetObjectsByIdProfileGet: %s\n" % e)

Parameters

Query parameters
Name Description
filters
String

Responses

Status: 200 - OK


productItemAssociationsLottoPost


/product/itemAssociationsLotto

Usage and SDK Samples

curl -X POST\
-H "Content-Type: application/json"\
"http://localhost:3004//product/itemAssociationsLotto"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DefaultApi;

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

public class DefaultApiExample {

    public static void main(String[] args) {
        
        DefaultApi apiInstance = new DefaultApi();
        Product_itemAssociationsLotto_body body = ; // Product_itemAssociationsLotto_body | 
        try {
            apiInstance.productItemAssociationsLottoPost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#productItemAssociationsLottoPost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.DefaultApi;

public class DefaultApiExample {

    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        Product_itemAssociationsLotto_body body = ; // Product_itemAssociationsLotto_body | 
        try {
            apiInstance.productItemAssociationsLottoPost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#productItemAssociationsLottoPost");
            e.printStackTrace();
        }
    }
}
Product_itemAssociationsLotto_body *body = ; //  (optional)

DefaultApi *apiInstance = [[DefaultApi alloc] init];

[apiInstance productItemAssociationsLottoPostWith:body
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var 1TrueId30MakerCustomer = require('1_true_id_30_maker_customer');

var api = new 1TrueId30MakerCustomer.DefaultApi()
var opts = { 
  'body':  // {{Product_itemAssociationsLotto_body}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.productItemAssociationsLottoPost(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new DefaultApi();
            var body = new Product_itemAssociationsLotto_body(); // Product_itemAssociationsLotto_body |  (optional) 

            try
            {
                apiInstance.productItemAssociationsLottoPost(body);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling DefaultApi.productItemAssociationsLottoPost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiDefaultApi();
$body = ; // Product_itemAssociationsLotto_body | 

try {
    $api_instance->productItemAssociationsLottoPost($body);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->productItemAssociationsLottoPost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::DefaultApi;

my $api_instance = WWW::SwaggerClient::DefaultApi->new();
my $body = WWW::SwaggerClient::Object::Product_itemAssociationsLotto_body->new(); # Product_itemAssociationsLotto_body | 

eval { 
    $api_instance->productItemAssociationsLottoPost(body => $body);
};
if ($@) {
    warn "Exception when calling DefaultApi->productItemAssociationsLottoPost: $@\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.DefaultApi()
body =  # Product_itemAssociationsLotto_body |  (optional)

try: 
    api_instance.product_item_associations_lotto_post(body=body)
except ApiException as e:
    print("Exception when calling DefaultApi->productItemAssociationsLottoPost: %s\n" % e)

Parameters

Body parameters
Name Description
body

Responses

Status: 200 - OK


productItemAssociationsPost


/product/itemAssociations

Usage and SDK Samples

curl -X POST\
-H "Content-Type: application/json"\
"http://localhost:3004//product/itemAssociations"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DefaultApi;

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

public class DefaultApiExample {

    public static void main(String[] args) {
        
        DefaultApi apiInstance = new DefaultApi();
        Product_itemAssociations_body body = ; // Product_itemAssociations_body | 
        try {
            apiInstance.productItemAssociationsPost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#productItemAssociationsPost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.DefaultApi;

public class DefaultApiExample {

    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        Product_itemAssociations_body body = ; // Product_itemAssociations_body | 
        try {
            apiInstance.productItemAssociationsPost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#productItemAssociationsPost");
            e.printStackTrace();
        }
    }
}
Product_itemAssociations_body *body = ; //  (optional)

DefaultApi *apiInstance = [[DefaultApi alloc] init];

[apiInstance productItemAssociationsPostWith:body
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var 1TrueId30MakerCustomer = require('1_true_id_30_maker_customer');

var api = new 1TrueId30MakerCustomer.DefaultApi()
var opts = { 
  'body':  // {{Product_itemAssociations_body}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.productItemAssociationsPost(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new DefaultApi();
            var body = new Product_itemAssociations_body(); // Product_itemAssociations_body |  (optional) 

            try
            {
                apiInstance.productItemAssociationsPost(body);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling DefaultApi.productItemAssociationsPost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiDefaultApi();
$body = ; // Product_itemAssociations_body | 

try {
    $api_instance->productItemAssociationsPost($body);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->productItemAssociationsPost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::DefaultApi;

my $api_instance = WWW::SwaggerClient::DefaultApi->new();
my $body = WWW::SwaggerClient::Object::Product_itemAssociations_body->new(); # Product_itemAssociations_body | 

eval { 
    $api_instance->productItemAssociationsPost(body => $body);
};
if ($@) {
    warn "Exception when calling DefaultApi->productItemAssociationsPost: $@\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.DefaultApi()
body =  # Product_itemAssociations_body |  (optional)

try: 
    api_instance.product_item_associations_post(body=body)
except ApiException as e:
    print("Exception when calling DefaultApi->productItemAssociationsPost: %s\n" % e)

Parameters

Body parameters
Name Description
body

Responses

Status: 200 - OK


productItemAssociationsProfilePost


/product/itemAssociationsProfile

Usage and SDK Samples

curl -X POST\
-H "Content-Type: application/json"\
"http://localhost:3004//product/itemAssociationsProfile"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DefaultApi;

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

public class DefaultApiExample {

    public static void main(String[] args) {
        
        DefaultApi apiInstance = new DefaultApi();
        Product_itemAssociationsProfile_body body = ; // Product_itemAssociationsProfile_body | 
        try {
            apiInstance.productItemAssociationsProfilePost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#productItemAssociationsProfilePost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.DefaultApi;

public class DefaultApiExample {

    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        Product_itemAssociationsProfile_body body = ; // Product_itemAssociationsProfile_body | 
        try {
            apiInstance.productItemAssociationsProfilePost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#productItemAssociationsProfilePost");
            e.printStackTrace();
        }
    }
}
Product_itemAssociationsProfile_body *body = ; //  (optional)

DefaultApi *apiInstance = [[DefaultApi alloc] init];

[apiInstance productItemAssociationsProfilePostWith:body
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var 1TrueId30MakerCustomer = require('1_true_id_30_maker_customer');

var api = new 1TrueId30MakerCustomer.DefaultApi()
var opts = { 
  'body':  // {{Product_itemAssociationsProfile_body}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.productItemAssociationsProfilePost(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new DefaultApi();
            var body = new Product_itemAssociationsProfile_body(); // Product_itemAssociationsProfile_body |  (optional) 

            try
            {
                apiInstance.productItemAssociationsProfilePost(body);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling DefaultApi.productItemAssociationsProfilePost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiDefaultApi();
$body = ; // Product_itemAssociationsProfile_body | 

try {
    $api_instance->productItemAssociationsProfilePost($body);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->productItemAssociationsProfilePost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::DefaultApi;

my $api_instance = WWW::SwaggerClient::DefaultApi->new();
my $body = WWW::SwaggerClient::Object::Product_itemAssociationsProfile_body->new(); # Product_itemAssociationsProfile_body | 

eval { 
    $api_instance->productItemAssociationsProfilePost(body => $body);
};
if ($@) {
    warn "Exception when calling DefaultApi->productItemAssociationsProfilePost: $@\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.DefaultApi()
body =  # Product_itemAssociationsProfile_body |  (optional)

try: 
    api_instance.product_item_associations_profile_post(body=body)
except ApiException as e:
    print("Exception when calling DefaultApi->productItemAssociationsProfilePost: %s\n" % e)

Parameters

Body parameters
Name Description
body

Responses

Status: 200 - OK


productProductUidChangeProductProfilePost


/product/{product_uid}/change-product-profile

Usage and SDK Samples

curl -X POST\
-H "Content-Type: application/json"\
"http://localhost:3004//product/{product_uid}/change-product-profile"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DefaultApi;

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

public class DefaultApiExample {

    public static void main(String[] args) {
        
        DefaultApi apiInstance = new DefaultApi();
        String productUid = productUid_example; // String | 
        Product_uid_changeproductprofile_body body = ; // Product_uid_changeproductprofile_body | 
        try {
            apiInstance.productProductUidChangeProductProfilePost(productUid, body);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#productProductUidChangeProductProfilePost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.DefaultApi;

public class DefaultApiExample {

    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        String productUid = productUid_example; // String | 
        Product_uid_changeproductprofile_body body = ; // Product_uid_changeproductprofile_body | 
        try {
            apiInstance.productProductUidChangeProductProfilePost(productUid, body);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#productProductUidChangeProductProfilePost");
            e.printStackTrace();
        }
    }
}
String *productUid = productUid_example; // 
Product_uid_changeproductprofile_body *body = ; //  (optional)

DefaultApi *apiInstance = [[DefaultApi alloc] init];

[apiInstance productProductUidChangeProductProfilePostWith:productUid
    body:body
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var 1TrueId30MakerCustomer = require('1_true_id_30_maker_customer');

var api = new 1TrueId30MakerCustomer.DefaultApi()
var productUid = productUid_example; // {{String}} 
var opts = { 
  'body':  // {{Product_uid_changeproductprofile_body}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.productProductUidChangeProductProfilePost(productUid, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new DefaultApi();
            var productUid = productUid_example;  // String | 
            var body = new Product_uid_changeproductprofile_body(); // Product_uid_changeproductprofile_body |  (optional) 

            try
            {
                apiInstance.productProductUidChangeProductProfilePost(productUid, body);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling DefaultApi.productProductUidChangeProductProfilePost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiDefaultApi();
$productUid = productUid_example; // String | 
$body = ; // Product_uid_changeproductprofile_body | 

try {
    $api_instance->productProductUidChangeProductProfilePost($productUid, $body);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->productProductUidChangeProductProfilePost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::DefaultApi;

my $api_instance = WWW::SwaggerClient::DefaultApi->new();
my $productUid = productUid_example; # String | 
my $body = WWW::SwaggerClient::Object::Product_uid_changeproductprofile_body->new(); # Product_uid_changeproductprofile_body | 

eval { 
    $api_instance->productProductUidChangeProductProfilePost(productUid => $productUid, body => $body);
};
if ($@) {
    warn "Exception when calling DefaultApi->productProductUidChangeProductProfilePost: $@\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.DefaultApi()
productUid = productUid_example # String | 
body =  # Product_uid_changeproductprofile_body |  (optional)

try: 
    api_instance.product_product_uid_change_product_profile_post(productUid, body=body)
except ApiException as e:
    print("Exception when calling DefaultApi->productProductUidChangeProductProfilePost: %s\n" % e)

Parameters

Path parameters
Name Description
product_uid*
String
Required
Body parameters
Name Description
body

Responses

Status: 200 - OK


productProfileAddProductLottoPost


/productProfile/addProductLotto/

Usage and SDK Samples

curl -X POST\
-H "Content-Type: application/json"\
"http://localhost:3004//productProfile/addProductLotto/"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DefaultApi;

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

public class DefaultApiExample {

    public static void main(String[] args) {
        
        DefaultApi apiInstance = new DefaultApi();
        ProductProfile_addProductLotto_body body = ; // ProductProfile_addProductLotto_body | 
        try {
            apiInstance.productProfileAddProductLottoPost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#productProfileAddProductLottoPost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.DefaultApi;

public class DefaultApiExample {

    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        ProductProfile_addProductLotto_body body = ; // ProductProfile_addProductLotto_body | 
        try {
            apiInstance.productProfileAddProductLottoPost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#productProfileAddProductLottoPost");
            e.printStackTrace();
        }
    }
}
ProductProfile_addProductLotto_body *body = ; //  (optional)

DefaultApi *apiInstance = [[DefaultApi alloc] init];

[apiInstance productProfileAddProductLottoPostWith:body
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var 1TrueId30MakerCustomer = require('1_true_id_30_maker_customer');

var api = new 1TrueId30MakerCustomer.DefaultApi()
var opts = { 
  'body':  // {{ProductProfile_addProductLotto_body}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.productProfileAddProductLottoPost(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new DefaultApi();
            var body = new ProductProfile_addProductLotto_body(); // ProductProfile_addProductLotto_body |  (optional) 

            try
            {
                apiInstance.productProfileAddProductLottoPost(body);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling DefaultApi.productProfileAddProductLottoPost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiDefaultApi();
$body = ; // ProductProfile_addProductLotto_body | 

try {
    $api_instance->productProfileAddProductLottoPost($body);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->productProfileAddProductLottoPost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::DefaultApi;

my $api_instance = WWW::SwaggerClient::DefaultApi->new();
my $body = WWW::SwaggerClient::Object::ProductProfile_addProductLotto_body->new(); # ProductProfile_addProductLotto_body | 

eval { 
    $api_instance->productProfileAddProductLottoPost(body => $body);
};
if ($@) {
    warn "Exception when calling DefaultApi->productProfileAddProductLottoPost: $@\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.DefaultApi()
body =  # ProductProfile_addProductLotto_body |  (optional)

try: 
    api_instance.product_profile_add_product_lotto_post(body=body)
except ApiException as e:
    print("Exception when calling DefaultApi->productProfileAddProductLottoPost: %s\n" % e)

Parameters

Body parameters
Name Description
body

Responses

Status: 200 - OK

Status: 400 - Bad Request


productProfileAddProductLottoPost_1


/product-profile/addProductLotto/

Usage and SDK Samples

curl -X POST\
-H "Content-Type: application/json"\
"http://localhost:3004//product-profile/addProductLotto/"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DefaultApi;

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

public class DefaultApiExample {

    public static void main(String[] args) {
        
        DefaultApi apiInstance = new DefaultApi();
        Productprofile_addProductLotto_body body = ; // Productprofile_addProductLotto_body | 
        try {
            apiInstance.productProfileAddProductLottoPost_0(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#productProfileAddProductLottoPost_0");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.DefaultApi;

public class DefaultApiExample {

    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        Productprofile_addProductLotto_body body = ; // Productprofile_addProductLotto_body | 
        try {
            apiInstance.productProfileAddProductLottoPost_0(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#productProfileAddProductLottoPost_0");
            e.printStackTrace();
        }
    }
}
Productprofile_addProductLotto_body *body = ; //  (optional)

DefaultApi *apiInstance = [[DefaultApi alloc] init];

[apiInstance productProfileAddProductLottoPost_1With:body
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var 1TrueId30MakerCustomer = require('1_true_id_30_maker_customer');

var api = new 1TrueId30MakerCustomer.DefaultApi()
var opts = { 
  'body':  // {{Productprofile_addProductLotto_body}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.productProfileAddProductLottoPost_0(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new DefaultApi();
            var body = new Productprofile_addProductLotto_body(); // Productprofile_addProductLotto_body |  (optional) 

            try
            {
                apiInstance.productProfileAddProductLottoPost_0(body);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling DefaultApi.productProfileAddProductLottoPost_0: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiDefaultApi();
$body = ; // Productprofile_addProductLotto_body | 

try {
    $api_instance->productProfileAddProductLottoPost_0($body);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->productProfileAddProductLottoPost_0: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::DefaultApi;

my $api_instance = WWW::SwaggerClient::DefaultApi->new();
my $body = WWW::SwaggerClient::Object::Productprofile_addProductLotto_body->new(); # Productprofile_addProductLotto_body | 

eval { 
    $api_instance->productProfileAddProductLottoPost_0(body => $body);
};
if ($@) {
    warn "Exception when calling DefaultApi->productProfileAddProductLottoPost_0: $@\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.DefaultApi()
body =  # Productprofile_addProductLotto_body |  (optional)

try: 
    api_instance.product_profile_add_product_lotto_post_0(body=body)
except ApiException as e:
    print("Exception when calling DefaultApi->productProfileAddProductLottoPost_0: %s\n" % e)

Parameters

Body parameters
Name Description
body

Responses

Status: 200 - OK

Status: 400 - Bad Request


productProfileDeleteMainImagePost


/productProfile/deleteMainImage

Usage and SDK Samples

curl -X POST\
-H "Content-Type: application/json"\
"http://localhost:3004//productProfile/deleteMainImage"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DefaultApi;

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

public class DefaultApiExample {

    public static void main(String[] args) {
        
        DefaultApi apiInstance = new DefaultApi();
        ProductProfile_deleteMainImage_body body = ; // ProductProfile_deleteMainImage_body | 
        try {
            apiInstance.productProfileDeleteMainImagePost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#productProfileDeleteMainImagePost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.DefaultApi;

public class DefaultApiExample {

    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        ProductProfile_deleteMainImage_body body = ; // ProductProfile_deleteMainImage_body | 
        try {
            apiInstance.productProfileDeleteMainImagePost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#productProfileDeleteMainImagePost");
            e.printStackTrace();
        }
    }
}
ProductProfile_deleteMainImage_body *body = ; //  (optional)

DefaultApi *apiInstance = [[DefaultApi alloc] init];

[apiInstance productProfileDeleteMainImagePostWith:body
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var 1TrueId30MakerCustomer = require('1_true_id_30_maker_customer');

var api = new 1TrueId30MakerCustomer.DefaultApi()
var opts = { 
  'body':  // {{ProductProfile_deleteMainImage_body}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.productProfileDeleteMainImagePost(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new DefaultApi();
            var body = new ProductProfile_deleteMainImage_body(); // ProductProfile_deleteMainImage_body |  (optional) 

            try
            {
                apiInstance.productProfileDeleteMainImagePost(body);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling DefaultApi.productProfileDeleteMainImagePost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiDefaultApi();
$body = ; // ProductProfile_deleteMainImage_body | 

try {
    $api_instance->productProfileDeleteMainImagePost($body);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->productProfileDeleteMainImagePost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::DefaultApi;

my $api_instance = WWW::SwaggerClient::DefaultApi->new();
my $body = WWW::SwaggerClient::Object::ProductProfile_deleteMainImage_body->new(); # ProductProfile_deleteMainImage_body | 

eval { 
    $api_instance->productProfileDeleteMainImagePost(body => $body);
};
if ($@) {
    warn "Exception when calling DefaultApi->productProfileDeleteMainImagePost: $@\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.DefaultApi()
body =  # ProductProfile_deleteMainImage_body |  (optional)

try: 
    api_instance.product_profile_delete_main_image_post(body=body)
except ApiException as e:
    print("Exception when calling DefaultApi->productProfileDeleteMainImagePost: %s\n" % e)

Parameters

Body parameters
Name Description
body

Responses

Status: 200 - OK


productProfileDeleteMainImagePost_2


/product-profile/deleteMainImage

Usage and SDK Samples

curl -X POST\
-H "Content-Type: application/json"\
"http://localhost:3004//product-profile/deleteMainImage"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DefaultApi;

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

public class DefaultApiExample {

    public static void main(String[] args) {
        
        DefaultApi apiInstance = new DefaultApi();
        Productprofile_deleteMainImage_body body = ; // Productprofile_deleteMainImage_body | 
        try {
            apiInstance.productProfileDeleteMainImagePost_0(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#productProfileDeleteMainImagePost_0");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.DefaultApi;

public class DefaultApiExample {

    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        Productprofile_deleteMainImage_body body = ; // Productprofile_deleteMainImage_body | 
        try {
            apiInstance.productProfileDeleteMainImagePost_0(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#productProfileDeleteMainImagePost_0");
            e.printStackTrace();
        }
    }
}
Productprofile_deleteMainImage_body *body = ; //  (optional)

DefaultApi *apiInstance = [[DefaultApi alloc] init];

[apiInstance productProfileDeleteMainImagePost_2With:body
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var 1TrueId30MakerCustomer = require('1_true_id_30_maker_customer');

var api = new 1TrueId30MakerCustomer.DefaultApi()
var opts = { 
  'body':  // {{Productprofile_deleteMainImage_body}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.productProfileDeleteMainImagePost_0(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new DefaultApi();
            var body = new Productprofile_deleteMainImage_body(); // Productprofile_deleteMainImage_body |  (optional) 

            try
            {
                apiInstance.productProfileDeleteMainImagePost_0(body);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling DefaultApi.productProfileDeleteMainImagePost_0: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiDefaultApi();
$body = ; // Productprofile_deleteMainImage_body | 

try {
    $api_instance->productProfileDeleteMainImagePost_0($body);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->productProfileDeleteMainImagePost_0: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::DefaultApi;

my $api_instance = WWW::SwaggerClient::DefaultApi->new();
my $body = WWW::SwaggerClient::Object::Productprofile_deleteMainImage_body->new(); # Productprofile_deleteMainImage_body | 

eval { 
    $api_instance->productProfileDeleteMainImagePost_0(body => $body);
};
if ($@) {
    warn "Exception when calling DefaultApi->productProfileDeleteMainImagePost_0: $@\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.DefaultApi()
body =  # Productprofile_deleteMainImage_body |  (optional)

try: 
    api_instance.product_profile_delete_main_image_post_0(body=body)
except ApiException as e:
    print("Exception when calling DefaultApi->productProfileDeleteMainImagePost_0: %s\n" % e)

Parameters

Body parameters
Name Description
body

Responses

Status: 200 - OK


productProfileDeleteTechnicalImagePost


/productProfile/deleteTechnicalImage

Usage and SDK Samples

curl -X POST\
-H "Content-Type: application/json"\
"http://localhost:3004//productProfile/deleteTechnicalImage"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DefaultApi;

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

public class DefaultApiExample {

    public static void main(String[] args) {
        
        DefaultApi apiInstance = new DefaultApi();
        ProductProfile_deleteTechnicalImage_body body = ; // ProductProfile_deleteTechnicalImage_body | 
        try {
            apiInstance.productProfileDeleteTechnicalImagePost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#productProfileDeleteTechnicalImagePost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.DefaultApi;

public class DefaultApiExample {

    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        ProductProfile_deleteTechnicalImage_body body = ; // ProductProfile_deleteTechnicalImage_body | 
        try {
            apiInstance.productProfileDeleteTechnicalImagePost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#productProfileDeleteTechnicalImagePost");
            e.printStackTrace();
        }
    }
}
ProductProfile_deleteTechnicalImage_body *body = ; //  (optional)

DefaultApi *apiInstance = [[DefaultApi alloc] init];

[apiInstance productProfileDeleteTechnicalImagePostWith:body
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var 1TrueId30MakerCustomer = require('1_true_id_30_maker_customer');

var api = new 1TrueId30MakerCustomer.DefaultApi()
var opts = { 
  'body':  // {{ProductProfile_deleteTechnicalImage_body}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.productProfileDeleteTechnicalImagePost(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new DefaultApi();
            var body = new ProductProfile_deleteTechnicalImage_body(); // ProductProfile_deleteTechnicalImage_body |  (optional) 

            try
            {
                apiInstance.productProfileDeleteTechnicalImagePost(body);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling DefaultApi.productProfileDeleteTechnicalImagePost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiDefaultApi();
$body = ; // ProductProfile_deleteTechnicalImage_body | 

try {
    $api_instance->productProfileDeleteTechnicalImagePost($body);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->productProfileDeleteTechnicalImagePost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::DefaultApi;

my $api_instance = WWW::SwaggerClient::DefaultApi->new();
my $body = WWW::SwaggerClient::Object::ProductProfile_deleteTechnicalImage_body->new(); # ProductProfile_deleteTechnicalImage_body | 

eval { 
    $api_instance->productProfileDeleteTechnicalImagePost(body => $body);
};
if ($@) {
    warn "Exception when calling DefaultApi->productProfileDeleteTechnicalImagePost: $@\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.DefaultApi()
body =  # ProductProfile_deleteTechnicalImage_body |  (optional)

try: 
    api_instance.product_profile_delete_technical_image_post(body=body)
except ApiException as e:
    print("Exception when calling DefaultApi->productProfileDeleteTechnicalImagePost: %s\n" % e)

Parameters

Body parameters
Name Description
body

Responses

Status: 200 - OK


productProfileDeleteTechnicalImagePost_3


/product-profile/deleteTechnicalImage

Usage and SDK Samples

curl -X POST\
-H "Content-Type: application/json"\
"http://localhost:3004//product-profile/deleteTechnicalImage"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DefaultApi;

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

public class DefaultApiExample {

    public static void main(String[] args) {
        
        DefaultApi apiInstance = new DefaultApi();
        Productprofile_deleteTechnicalImage_body body = ; // Productprofile_deleteTechnicalImage_body | 
        try {
            apiInstance.productProfileDeleteTechnicalImagePost_0(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#productProfileDeleteTechnicalImagePost_0");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.DefaultApi;

public class DefaultApiExample {

    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        Productprofile_deleteTechnicalImage_body body = ; // Productprofile_deleteTechnicalImage_body | 
        try {
            apiInstance.productProfileDeleteTechnicalImagePost_0(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#productProfileDeleteTechnicalImagePost_0");
            e.printStackTrace();
        }
    }
}
Productprofile_deleteTechnicalImage_body *body = ; //  (optional)

DefaultApi *apiInstance = [[DefaultApi alloc] init];

[apiInstance productProfileDeleteTechnicalImagePost_3With:body
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var 1TrueId30MakerCustomer = require('1_true_id_30_maker_customer');

var api = new 1TrueId30MakerCustomer.DefaultApi()
var opts = { 
  'body':  // {{Productprofile_deleteTechnicalImage_body}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.productProfileDeleteTechnicalImagePost_0(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new DefaultApi();
            var body = new Productprofile_deleteTechnicalImage_body(); // Productprofile_deleteTechnicalImage_body |  (optional) 

            try
            {
                apiInstance.productProfileDeleteTechnicalImagePost_0(body);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling DefaultApi.productProfileDeleteTechnicalImagePost_0: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiDefaultApi();
$body = ; // Productprofile_deleteTechnicalImage_body | 

try {
    $api_instance->productProfileDeleteTechnicalImagePost_0($body);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->productProfileDeleteTechnicalImagePost_0: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::DefaultApi;

my $api_instance = WWW::SwaggerClient::DefaultApi->new();
my $body = WWW::SwaggerClient::Object::Productprofile_deleteTechnicalImage_body->new(); # Productprofile_deleteTechnicalImage_body | 

eval { 
    $api_instance->productProfileDeleteTechnicalImagePost_0(body => $body);
};
if ($@) {
    warn "Exception when calling DefaultApi->productProfileDeleteTechnicalImagePost_0: $@\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.DefaultApi()
body =  # Productprofile_deleteTechnicalImage_body |  (optional)

try: 
    api_instance.product_profile_delete_technical_image_post_0(body=body)
except ApiException as e:
    print("Exception when calling DefaultApi->productProfileDeleteTechnicalImagePost_0: %s\n" % e)

Parameters

Body parameters
Name Description
body

Responses

Status: 200 - OK


productProfileFindIwstotidObjectProfileGet


/productProfile/findIwstotidObjectProfile

Usage and SDK Samples

curl -X GET\
"http://localhost:3004//productProfile/findIwstotidObjectProfile?filters="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DefaultApi;

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

public class DefaultApiExample {

    public static void main(String[] args) {
        
        DefaultApi apiInstance = new DefaultApi();
        String filters = filters_example; // String | 
        try {
            apiInstance.productProfileFindIwstotidObjectProfileGet(filters);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#productProfileFindIwstotidObjectProfileGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.DefaultApi;

public class DefaultApiExample {

    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        String filters = filters_example; // String | 
        try {
            apiInstance.productProfileFindIwstotidObjectProfileGet(filters);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#productProfileFindIwstotidObjectProfileGet");
            e.printStackTrace();
        }
    }
}
String *filters = filters_example; //  (optional)

DefaultApi *apiInstance = [[DefaultApi alloc] init];

[apiInstance productProfileFindIwstotidObjectProfileGetWith:filters
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var 1TrueId30MakerCustomer = require('1_true_id_30_maker_customer');

var api = new 1TrueId30MakerCustomer.DefaultApi()
var opts = { 
  'filters': filters_example // {{String}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.productProfileFindIwstotidObjectProfileGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new DefaultApi();
            var filters = filters_example;  // String |  (optional) 

            try
            {
                apiInstance.productProfileFindIwstotidObjectProfileGet(filters);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling DefaultApi.productProfileFindIwstotidObjectProfileGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiDefaultApi();
$filters = filters_example; // String | 

try {
    $api_instance->productProfileFindIwstotidObjectProfileGet($filters);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->productProfileFindIwstotidObjectProfileGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::DefaultApi;

my $api_instance = WWW::SwaggerClient::DefaultApi->new();
my $filters = filters_example; # String | 

eval { 
    $api_instance->productProfileFindIwstotidObjectProfileGet(filters => $filters);
};
if ($@) {
    warn "Exception when calling DefaultApi->productProfileFindIwstotidObjectProfileGet: $@\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.DefaultApi()
filters = filters_example # String |  (optional)

try: 
    api_instance.product_profile_find_iwstotid_object_profile_get(filters=filters)
except ApiException as e:
    print("Exception when calling DefaultApi->productProfileFindIwstotidObjectProfileGet: %s\n" % e)

Parameters

Query parameters
Name Description
filters
String

Responses

Status: 200 - OK


productProfileFindIwstotidObjectProfileGet_4


/product-profile/findIwstotidObjectProfile

Usage and SDK Samples

curl -X GET\
"http://localhost:3004//product-profile/findIwstotidObjectProfile?filters="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DefaultApi;

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

public class DefaultApiExample {

    public static void main(String[] args) {
        
        DefaultApi apiInstance = new DefaultApi();
        String filters = filters_example; // String | 
        try {
            apiInstance.productProfileFindIwstotidObjectProfileGet_0(filters);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#productProfileFindIwstotidObjectProfileGet_0");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.DefaultApi;

public class DefaultApiExample {

    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        String filters = filters_example; // String | 
        try {
            apiInstance.productProfileFindIwstotidObjectProfileGet_0(filters);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#productProfileFindIwstotidObjectProfileGet_0");
            e.printStackTrace();
        }
    }
}
String *filters = filters_example; //  (optional)

DefaultApi *apiInstance = [[DefaultApi alloc] init];

[apiInstance productProfileFindIwstotidObjectProfileGet_4With:filters
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var 1TrueId30MakerCustomer = require('1_true_id_30_maker_customer');

var api = new 1TrueId30MakerCustomer.DefaultApi()
var opts = { 
  'filters': filters_example // {{String}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.productProfileFindIwstotidObjectProfileGet_0(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new DefaultApi();
            var filters = filters_example;  // String |  (optional) 

            try
            {
                apiInstance.productProfileFindIwstotidObjectProfileGet_0(filters);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling DefaultApi.productProfileFindIwstotidObjectProfileGet_0: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiDefaultApi();
$filters = filters_example; // String | 

try {
    $api_instance->productProfileFindIwstotidObjectProfileGet_0($filters);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->productProfileFindIwstotidObjectProfileGet_0: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::DefaultApi;

my $api_instance = WWW::SwaggerClient::DefaultApi->new();
my $filters = filters_example; # String | 

eval { 
    $api_instance->productProfileFindIwstotidObjectProfileGet_0(filters => $filters);
};
if ($@) {
    warn "Exception when calling DefaultApi->productProfileFindIwstotidObjectProfileGet_0: $@\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.DefaultApi()
filters = filters_example # String |  (optional)

try: 
    api_instance.product_profile_find_iwstotid_object_profile_get_0(filters=filters)
except ApiException as e:
    print("Exception when calling DefaultApi->productProfileFindIwstotidObjectProfileGet_0: %s\n" % e)

Parameters

Query parameters
Name Description
filters
String

Responses

Status: 200 - OK


productProfileFindOtidObjectProfileStatiGet


/productProfile/findOtidObjectProfileStati

Usage and SDK Samples

curl -X GET\
"http://localhost:3004//productProfile/findOtidObjectProfileStati?filters="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DefaultApi;

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

public class DefaultApiExample {

    public static void main(String[] args) {
        
        DefaultApi apiInstance = new DefaultApi();
        String filters = filters_example; // String | 
        try {
            apiInstance.productProfileFindOtidObjectProfileStatiGet(filters);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#productProfileFindOtidObjectProfileStatiGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.DefaultApi;

public class DefaultApiExample {

    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        String filters = filters_example; // String | 
        try {
            apiInstance.productProfileFindOtidObjectProfileStatiGet(filters);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#productProfileFindOtidObjectProfileStatiGet");
            e.printStackTrace();
        }
    }
}
String *filters = filters_example; //  (optional)

DefaultApi *apiInstance = [[DefaultApi alloc] init];

[apiInstance productProfileFindOtidObjectProfileStatiGetWith:filters
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var 1TrueId30MakerCustomer = require('1_true_id_30_maker_customer');

var api = new 1TrueId30MakerCustomer.DefaultApi()
var opts = { 
  'filters': filters_example // {{String}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.productProfileFindOtidObjectProfileStatiGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new DefaultApi();
            var filters = filters_example;  // String |  (optional) 

            try
            {
                apiInstance.productProfileFindOtidObjectProfileStatiGet(filters);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling DefaultApi.productProfileFindOtidObjectProfileStatiGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiDefaultApi();
$filters = filters_example; // String | 

try {
    $api_instance->productProfileFindOtidObjectProfileStatiGet($filters);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->productProfileFindOtidObjectProfileStatiGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::DefaultApi;

my $api_instance = WWW::SwaggerClient::DefaultApi->new();
my $filters = filters_example; # String | 

eval { 
    $api_instance->productProfileFindOtidObjectProfileStatiGet(filters => $filters);
};
if ($@) {
    warn "Exception when calling DefaultApi->productProfileFindOtidObjectProfileStatiGet: $@\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.DefaultApi()
filters = filters_example # String |  (optional)

try: 
    api_instance.product_profile_find_otid_object_profile_stati_get(filters=filters)
except ApiException as e:
    print("Exception when calling DefaultApi->productProfileFindOtidObjectProfileStatiGet: %s\n" % e)

Parameters

Query parameters
Name Description
filters
String

Responses

Status: 200 - OK


productProfileFindOtidObjectProfileStatiGet_5


/product-profile/findOtidObjectProfileStati

Usage and SDK Samples

curl -X GET\
"http://localhost:3004//product-profile/findOtidObjectProfileStati?filters="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DefaultApi;

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

public class DefaultApiExample {

    public static void main(String[] args) {
        
        DefaultApi apiInstance = new DefaultApi();
        String filters = filters_example; // String | 
        try {
            apiInstance.productProfileFindOtidObjectProfileStatiGet_0(filters);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#productProfileFindOtidObjectProfileStatiGet_0");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.DefaultApi;

public class DefaultApiExample {

    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        String filters = filters_example; // String | 
        try {
            apiInstance.productProfileFindOtidObjectProfileStatiGet_0(filters);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#productProfileFindOtidObjectProfileStatiGet_0");
            e.printStackTrace();
        }
    }
}
String *filters = filters_example; //  (optional)

DefaultApi *apiInstance = [[DefaultApi alloc] init];

[apiInstance productProfileFindOtidObjectProfileStatiGet_5With:filters
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var 1TrueId30MakerCustomer = require('1_true_id_30_maker_customer');

var api = new 1TrueId30MakerCustomer.DefaultApi()
var opts = { 
  'filters': filters_example // {{String}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.productProfileFindOtidObjectProfileStatiGet_0(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new DefaultApi();
            var filters = filters_example;  // String |  (optional) 

            try
            {
                apiInstance.productProfileFindOtidObjectProfileStatiGet_0(filters);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling DefaultApi.productProfileFindOtidObjectProfileStatiGet_0: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiDefaultApi();
$filters = filters_example; // String | 

try {
    $api_instance->productProfileFindOtidObjectProfileStatiGet_0($filters);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->productProfileFindOtidObjectProfileStatiGet_0: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::DefaultApi;

my $api_instance = WWW::SwaggerClient::DefaultApi->new();
my $filters = filters_example; # String | 

eval { 
    $api_instance->productProfileFindOtidObjectProfileStatiGet_0(filters => $filters);
};
if ($@) {
    warn "Exception when calling DefaultApi->productProfileFindOtidObjectProfileStatiGet_0: $@\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.DefaultApi()
filters = filters_example # String |  (optional)

try: 
    api_instance.product_profile_find_otid_object_profile_stati_get_0(filters=filters)
except ApiException as e:
    print("Exception when calling DefaultApi->productProfileFindOtidObjectProfileStatiGet_0: %s\n" % e)

Parameters

Query parameters
Name Description
filters
String

Responses

Status: 200 - OK


productProfileProductProfileUidImagePut


/productProfile/{product_profile_uid}/image

Usage and SDK Samples

curl -X PUT\
-H "Content-Type: application/json"\
"http://localhost:3004//productProfile/{product_profile_uid}/image"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DefaultApi;

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

public class DefaultApiExample {

    public static void main(String[] args) {
        
        DefaultApi apiInstance = new DefaultApi();
        String productProfileUid = productProfileUid_example; // String | 
        Product_profile_uid_image_body body = ; // Product_profile_uid_image_body | 
        try {
            apiInstance.productProfileProductProfileUidImagePut(productProfileUid, body);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#productProfileProductProfileUidImagePut");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.DefaultApi;

public class DefaultApiExample {

    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        String productProfileUid = productProfileUid_example; // String | 
        Product_profile_uid_image_body body = ; // Product_profile_uid_image_body | 
        try {
            apiInstance.productProfileProductProfileUidImagePut(productProfileUid, body);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#productProfileProductProfileUidImagePut");
            e.printStackTrace();
        }
    }
}
String *productProfileUid = productProfileUid_example; // 
Product_profile_uid_image_body *body = ; //  (optional)

DefaultApi *apiInstance = [[DefaultApi alloc] init];

[apiInstance productProfileProductProfileUidImagePutWith:productProfileUid
    body:body
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var 1TrueId30MakerCustomer = require('1_true_id_30_maker_customer');

var api = new 1TrueId30MakerCustomer.DefaultApi()
var productProfileUid = productProfileUid_example; // {{String}} 
var opts = { 
  'body':  // {{Product_profile_uid_image_body}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.productProfileProductProfileUidImagePut(productProfileUid, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new DefaultApi();
            var productProfileUid = productProfileUid_example;  // String | 
            var body = new Product_profile_uid_image_body(); // Product_profile_uid_image_body |  (optional) 

            try
            {
                apiInstance.productProfileProductProfileUidImagePut(productProfileUid, body);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling DefaultApi.productProfileProductProfileUidImagePut: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiDefaultApi();
$productProfileUid = productProfileUid_example; // String | 
$body = ; // Product_profile_uid_image_body | 

try {
    $api_instance->productProfileProductProfileUidImagePut($productProfileUid, $body);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->productProfileProductProfileUidImagePut: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::DefaultApi;

my $api_instance = WWW::SwaggerClient::DefaultApi->new();
my $productProfileUid = productProfileUid_example; # String | 
my $body = WWW::SwaggerClient::Object::Product_profile_uid_image_body->new(); # Product_profile_uid_image_body | 

eval { 
    $api_instance->productProfileProductProfileUidImagePut(productProfileUid => $productProfileUid, body => $body);
};
if ($@) {
    warn "Exception when calling DefaultApi->productProfileProductProfileUidImagePut: $@\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.DefaultApi()
productProfileUid = productProfileUid_example # String | 
body =  # Product_profile_uid_image_body |  (optional)

try: 
    api_instance.product_profile_product_profile_uid_image_put(productProfileUid, body=body)
except ApiException as e:
    print("Exception when calling DefaultApi->productProfileProductProfileUidImagePut: %s\n" % e)

Parameters

Path parameters
Name Description
product_profile_uid*
String
Required
Body parameters
Name Description
body

Responses

Status: 200 - OK


productProfileProductProfileUidImagePut_6


/product-profile/{product_profile_uid}/image

Usage and SDK Samples

curl -X PUT\
-H "Content-Type: application/json"\
"http://localhost:3004//product-profile/{product_profile_uid}/image"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DefaultApi;

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

public class DefaultApiExample {

    public static void main(String[] args) {
        
        DefaultApi apiInstance = new DefaultApi();
        String productProfileUid = productProfileUid_example; // String | 
        Product_profile_uid_image_body_1 body = ; // Product_profile_uid_image_body_1 | 
        try {
            apiInstance.productProfileProductProfileUidImagePut_0(productProfileUid, body);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#productProfileProductProfileUidImagePut_0");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.DefaultApi;

public class DefaultApiExample {

    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        String productProfileUid = productProfileUid_example; // String | 
        Product_profile_uid_image_body_1 body = ; // Product_profile_uid_image_body_1 | 
        try {
            apiInstance.productProfileProductProfileUidImagePut_0(productProfileUid, body);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#productProfileProductProfileUidImagePut_0");
            e.printStackTrace();
        }
    }
}
String *productProfileUid = productProfileUid_example; // 
Product_profile_uid_image_body_1 *body = ; //  (optional)

DefaultApi *apiInstance = [[DefaultApi alloc] init];

[apiInstance productProfileProductProfileUidImagePut_6With:productProfileUid
    body:body
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var 1TrueId30MakerCustomer = require('1_true_id_30_maker_customer');

var api = new 1TrueId30MakerCustomer.DefaultApi()
var productProfileUid = productProfileUid_example; // {{String}} 
var opts = { 
  'body':  // {{Product_profile_uid_image_body_1}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.productProfileProductProfileUidImagePut_0(productProfileUid, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new DefaultApi();
            var productProfileUid = productProfileUid_example;  // String | 
            var body = new Product_profile_uid_image_body_1(); // Product_profile_uid_image_body_1 |  (optional) 

            try
            {
                apiInstance.productProfileProductProfileUidImagePut_0(productProfileUid, body);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling DefaultApi.productProfileProductProfileUidImagePut_0: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiDefaultApi();
$productProfileUid = productProfileUid_example; // String | 
$body = ; // Product_profile_uid_image_body_1 | 

try {
    $api_instance->productProfileProductProfileUidImagePut_0($productProfileUid, $body);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->productProfileProductProfileUidImagePut_0: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::DefaultApi;

my $api_instance = WWW::SwaggerClient::DefaultApi->new();
my $productProfileUid = productProfileUid_example; # String | 
my $body = WWW::SwaggerClient::Object::Product_profile_uid_image_body_1->new(); # Product_profile_uid_image_body_1 | 

eval { 
    $api_instance->productProfileProductProfileUidImagePut_0(productProfileUid => $productProfileUid, body => $body);
};
if ($@) {
    warn "Exception when calling DefaultApi->productProfileProductProfileUidImagePut_0: $@\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.DefaultApi()
productProfileUid = productProfileUid_example # String | 
body =  # Product_profile_uid_image_body_1 |  (optional)

try: 
    api_instance.product_profile_product_profile_uid_image_put_0(productProfileUid, body=body)
except ApiException as e:
    print("Exception when calling DefaultApi->productProfileProductProfileUidImagePut_0: %s\n" % e)

Parameters

Path parameters
Name Description
product_profile_uid*
String
Required
Body parameters
Name Description
body

Responses

Status: 200 - OK


productProfileProductProfileUidTechnicalImagePut


/productProfile/{product_profile_uid}/technical-image

Usage and SDK Samples

curl -X PUT\
-H "Content-Type: application/json"\
"http://localhost:3004//productProfile/{product_profile_uid}/technical-image"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DefaultApi;

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

public class DefaultApiExample {

    public static void main(String[] args) {
        
        DefaultApi apiInstance = new DefaultApi();
        String productProfileUid = productProfileUid_example; // String | 
        Product_profile_uid_technicalimage_body body = ; // Product_profile_uid_technicalimage_body | 
        try {
            apiInstance.productProfileProductProfileUidTechnicalImagePut(productProfileUid, body);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#productProfileProductProfileUidTechnicalImagePut");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.DefaultApi;

public class DefaultApiExample {

    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        String productProfileUid = productProfileUid_example; // String | 
        Product_profile_uid_technicalimage_body body = ; // Product_profile_uid_technicalimage_body | 
        try {
            apiInstance.productProfileProductProfileUidTechnicalImagePut(productProfileUid, body);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#productProfileProductProfileUidTechnicalImagePut");
            e.printStackTrace();
        }
    }
}
String *productProfileUid = productProfileUid_example; // 
Product_profile_uid_technicalimage_body *body = ; //  (optional)

DefaultApi *apiInstance = [[DefaultApi alloc] init];

[apiInstance productProfileProductProfileUidTechnicalImagePutWith:productProfileUid
    body:body
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var 1TrueId30MakerCustomer = require('1_true_id_30_maker_customer');

var api = new 1TrueId30MakerCustomer.DefaultApi()
var productProfileUid = productProfileUid_example; // {{String}} 
var opts = { 
  'body':  // {{Product_profile_uid_technicalimage_body}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.productProfileProductProfileUidTechnicalImagePut(productProfileUid, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new DefaultApi();
            var productProfileUid = productProfileUid_example;  // String | 
            var body = new Product_profile_uid_technicalimage_body(); // Product_profile_uid_technicalimage_body |  (optional) 

            try
            {
                apiInstance.productProfileProductProfileUidTechnicalImagePut(productProfileUid, body);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling DefaultApi.productProfileProductProfileUidTechnicalImagePut: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiDefaultApi();
$productProfileUid = productProfileUid_example; // String | 
$body = ; // Product_profile_uid_technicalimage_body | 

try {
    $api_instance->productProfileProductProfileUidTechnicalImagePut($productProfileUid, $body);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->productProfileProductProfileUidTechnicalImagePut: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::DefaultApi;

my $api_instance = WWW::SwaggerClient::DefaultApi->new();
my $productProfileUid = productProfileUid_example; # String | 
my $body = WWW::SwaggerClient::Object::Product_profile_uid_technicalimage_body->new(); # Product_profile_uid_technicalimage_body | 

eval { 
    $api_instance->productProfileProductProfileUidTechnicalImagePut(productProfileUid => $productProfileUid, body => $body);
};
if ($@) {
    warn "Exception when calling DefaultApi->productProfileProductProfileUidTechnicalImagePut: $@\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.DefaultApi()
productProfileUid = productProfileUid_example # String | 
body =  # Product_profile_uid_technicalimage_body |  (optional)

try: 
    api_instance.product_profile_product_profile_uid_technical_image_put(productProfileUid, body=body)
except ApiException as e:
    print("Exception when calling DefaultApi->productProfileProductProfileUidTechnicalImagePut: %s\n" % e)

Parameters

Path parameters
Name Description
product_profile_uid*
String
Required
Body parameters
Name Description
body

Responses

Status: 200 - OK


productProfileProductProfileUidTechnicalImagePut_7


/product-profile/{product_profile_uid}/technical-image

Usage and SDK Samples

curl -X PUT\
-H "Content-Type: application/json"\
"http://localhost:3004//product-profile/{product_profile_uid}/technical-image"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DefaultApi;

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

public class DefaultApiExample {

    public static void main(String[] args) {
        
        DefaultApi apiInstance = new DefaultApi();
        String productProfileUid = productProfileUid_example; // String | 
        Product_profile_uid_technicalimage_body_1 body = ; // Product_profile_uid_technicalimage_body_1 | 
        try {
            apiInstance.productProfileProductProfileUidTechnicalImagePut_0(productProfileUid, body);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#productProfileProductProfileUidTechnicalImagePut_0");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.DefaultApi;

public class DefaultApiExample {

    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        String productProfileUid = productProfileUid_example; // String | 
        Product_profile_uid_technicalimage_body_1 body = ; // Product_profile_uid_technicalimage_body_1 | 
        try {
            apiInstance.productProfileProductProfileUidTechnicalImagePut_0(productProfileUid, body);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#productProfileProductProfileUidTechnicalImagePut_0");
            e.printStackTrace();
        }
    }
}
String *productProfileUid = productProfileUid_example; // 
Product_profile_uid_technicalimage_body_1 *body = ; //  (optional)

DefaultApi *apiInstance = [[DefaultApi alloc] init];

[apiInstance productProfileProductProfileUidTechnicalImagePut_7With:productProfileUid
    body:body
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var 1TrueId30MakerCustomer = require('1_true_id_30_maker_customer');

var api = new 1TrueId30MakerCustomer.DefaultApi()
var productProfileUid = productProfileUid_example; // {{String}} 
var opts = { 
  'body':  // {{Product_profile_uid_technicalimage_body_1}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.productProfileProductProfileUidTechnicalImagePut_0(productProfileUid, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new DefaultApi();
            var productProfileUid = productProfileUid_example;  // String | 
            var body = new Product_profile_uid_technicalimage_body_1(); // Product_profile_uid_technicalimage_body_1 |  (optional) 

            try
            {
                apiInstance.productProfileProductProfileUidTechnicalImagePut_0(productProfileUid, body);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling DefaultApi.productProfileProductProfileUidTechnicalImagePut_0: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiDefaultApi();
$productProfileUid = productProfileUid_example; // String | 
$body = ; // Product_profile_uid_technicalimage_body_1 | 

try {
    $api_instance->productProfileProductProfileUidTechnicalImagePut_0($productProfileUid, $body);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->productProfileProductProfileUidTechnicalImagePut_0: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::DefaultApi;

my $api_instance = WWW::SwaggerClient::DefaultApi->new();
my $productProfileUid = productProfileUid_example; # String | 
my $body = WWW::SwaggerClient::Object::Product_profile_uid_technicalimage_body_1->new(); # Product_profile_uid_technicalimage_body_1 | 

eval { 
    $api_instance->productProfileProductProfileUidTechnicalImagePut_0(productProfileUid => $productProfileUid, body => $body);
};
if ($@) {
    warn "Exception when calling DefaultApi->productProfileProductProfileUidTechnicalImagePut_0: $@\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.DefaultApi()
productProfileUid = productProfileUid_example # String | 
body =  # Product_profile_uid_technicalimage_body_1 |  (optional)

try: 
    api_instance.product_profile_product_profile_uid_technical_image_put_0(productProfileUid, body=body)
except ApiException as e:
    print("Exception when calling DefaultApi->productProfileProductProfileUidTechnicalImagePut_0: %s\n" % e)

Parameters

Path parameters
Name Description
product_profile_uid*
String
Required
Body parameters
Name Description
body

Responses

Status: 200 - OK


productProfileQrcodeCreateObjectsGet


/productProfile/qrcode/createObjects

Usage and SDK Samples

curl -X GET\
"http://localhost:3004//productProfile/qrcode/createObjects?idProfile=&quantity="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DefaultApi;

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

public class DefaultApiExample {

    public static void main(String[] args) {
        
        DefaultApi apiInstance = new DefaultApi();
        String idProfile = idProfile_example; // String | 
        String quantity = quantity_example; // String | 
        try {
            apiInstance.productProfileQrcodeCreateObjectsGet(idProfile, quantity);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#productProfileQrcodeCreateObjectsGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.DefaultApi;

public class DefaultApiExample {

    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        String idProfile = idProfile_example; // String | 
        String quantity = quantity_example; // String | 
        try {
            apiInstance.productProfileQrcodeCreateObjectsGet(idProfile, quantity);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#productProfileQrcodeCreateObjectsGet");
            e.printStackTrace();
        }
    }
}
String *idProfile = idProfile_example; //  (optional)
String *quantity = quantity_example; //  (optional)

DefaultApi *apiInstance = [[DefaultApi alloc] init];

[apiInstance productProfileQrcodeCreateObjectsGetWith:idProfile
    quantity:quantity
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var 1TrueId30MakerCustomer = require('1_true_id_30_maker_customer');

var api = new 1TrueId30MakerCustomer.DefaultApi()
var opts = { 
  'idProfile': idProfile_example, // {{String}} 
  'quantity': quantity_example // {{String}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.productProfileQrcodeCreateObjectsGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new DefaultApi();
            var idProfile = idProfile_example;  // String |  (optional) 
            var quantity = quantity_example;  // String |  (optional) 

            try
            {
                apiInstance.productProfileQrcodeCreateObjectsGet(idProfile, quantity);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling DefaultApi.productProfileQrcodeCreateObjectsGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiDefaultApi();
$idProfile = idProfile_example; // String | 
$quantity = quantity_example; // String | 

try {
    $api_instance->productProfileQrcodeCreateObjectsGet($idProfile, $quantity);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->productProfileQrcodeCreateObjectsGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::DefaultApi;

my $api_instance = WWW::SwaggerClient::DefaultApi->new();
my $idProfile = idProfile_example; # String | 
my $quantity = quantity_example; # String | 

eval { 
    $api_instance->productProfileQrcodeCreateObjectsGet(idProfile => $idProfile, quantity => $quantity);
};
if ($@) {
    warn "Exception when calling DefaultApi->productProfileQrcodeCreateObjectsGet: $@\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.DefaultApi()
idProfile = idProfile_example # String |  (optional)
quantity = quantity_example # String |  (optional)

try: 
    api_instance.product_profile_qrcode_create_objects_get(idProfile=idProfile, quantity=quantity)
except ApiException as e:
    print("Exception when calling DefaultApi->productProfileQrcodeCreateObjectsGet: %s\n" % e)

Parameters

Query parameters
Name Description
idProfile
String
quantity
String

Responses

Status: 200 - OK


productProfileQrcodeCreateObjectsGet_8


/product-profile/qrcode/createObjects

Usage and SDK Samples

curl -X GET\
"http://localhost:3004//product-profile/qrcode/createObjects?idProfile=&quantity="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DefaultApi;

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

public class DefaultApiExample {

    public static void main(String[] args) {
        
        DefaultApi apiInstance = new DefaultApi();
        String idProfile = idProfile_example; // String | 
        String quantity = quantity_example; // String | 
        try {
            apiInstance.productProfileQrcodeCreateObjectsGet_0(idProfile, quantity);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#productProfileQrcodeCreateObjectsGet_0");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.DefaultApi;

public class DefaultApiExample {

    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        String idProfile = idProfile_example; // String | 
        String quantity = quantity_example; // String | 
        try {
            apiInstance.productProfileQrcodeCreateObjectsGet_0(idProfile, quantity);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#productProfileQrcodeCreateObjectsGet_0");
            e.printStackTrace();
        }
    }
}
String *idProfile = idProfile_example; //  (optional)
String *quantity = quantity_example; //  (optional)

DefaultApi *apiInstance = [[DefaultApi alloc] init];

[apiInstance productProfileQrcodeCreateObjectsGet_8With:idProfile
    quantity:quantity
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var 1TrueId30MakerCustomer = require('1_true_id_30_maker_customer');

var api = new 1TrueId30MakerCustomer.DefaultApi()
var opts = { 
  'idProfile': idProfile_example, // {{String}} 
  'quantity': quantity_example // {{String}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.productProfileQrcodeCreateObjectsGet_0(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new DefaultApi();
            var idProfile = idProfile_example;  // String |  (optional) 
            var quantity = quantity_example;  // String |  (optional) 

            try
            {
                apiInstance.productProfileQrcodeCreateObjectsGet_0(idProfile, quantity);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling DefaultApi.productProfileQrcodeCreateObjectsGet_0: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiDefaultApi();
$idProfile = idProfile_example; // String | 
$quantity = quantity_example; // String | 

try {
    $api_instance->productProfileQrcodeCreateObjectsGet_0($idProfile, $quantity);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->productProfileQrcodeCreateObjectsGet_0: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::DefaultApi;

my $api_instance = WWW::SwaggerClient::DefaultApi->new();
my $idProfile = idProfile_example; # String | 
my $quantity = quantity_example; # String | 

eval { 
    $api_instance->productProfileQrcodeCreateObjectsGet_0(idProfile => $idProfile, quantity => $quantity);
};
if ($@) {
    warn "Exception when calling DefaultApi->productProfileQrcodeCreateObjectsGet_0: $@\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.DefaultApi()
idProfile = idProfile_example # String |  (optional)
quantity = quantity_example # String |  (optional)

try: 
    api_instance.product_profile_qrcode_create_objects_get_0(idProfile=idProfile, quantity=quantity)
except ApiException as e:
    print("Exception when calling DefaultApi->productProfileQrcodeCreateObjectsGet_0: %s\n" % e)

Parameters

Query parameters
Name Description
idProfile
String
quantity
String

Responses

Status: 200 - OK


productProfileQrcodeCreateQrsFileGet


/productProfile/qrcode/createQrsFile

Usage and SDK Samples

curl -X GET\
"http://localhost:3004//productProfile/qrcode/createQrsFile?fromUid=&toUid=&idProfile="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DefaultApi;

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

public class DefaultApiExample {

    public static void main(String[] args) {
        
        DefaultApi apiInstance = new DefaultApi();
        String fromUid = fromUid_example; // String | 
        String toUid = toUid_example; // String | 
        String idProfile = idProfile_example; // String | 
        try {
            apiInstance.productProfileQrcodeCreateQrsFileGet(fromUid, toUid, idProfile);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#productProfileQrcodeCreateQrsFileGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.DefaultApi;

public class DefaultApiExample {

    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        String fromUid = fromUid_example; // String | 
        String toUid = toUid_example; // String | 
        String idProfile = idProfile_example; // String | 
        try {
            apiInstance.productProfileQrcodeCreateQrsFileGet(fromUid, toUid, idProfile);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#productProfileQrcodeCreateQrsFileGet");
            e.printStackTrace();
        }
    }
}
String *fromUid = fromUid_example; //  (optional)
String *toUid = toUid_example; //  (optional)
String *idProfile = idProfile_example; //  (optional)

DefaultApi *apiInstance = [[DefaultApi alloc] init];

[apiInstance productProfileQrcodeCreateQrsFileGetWith:fromUid
    toUid:toUid
    idProfile:idProfile
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var 1TrueId30MakerCustomer = require('1_true_id_30_maker_customer');

var api = new 1TrueId30MakerCustomer.DefaultApi()
var opts = { 
  'fromUid': fromUid_example, // {{String}} 
  'toUid': toUid_example, // {{String}} 
  'idProfile': idProfile_example // {{String}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.productProfileQrcodeCreateQrsFileGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new DefaultApi();
            var fromUid = fromUid_example;  // String |  (optional) 
            var toUid = toUid_example;  // String |  (optional) 
            var idProfile = idProfile_example;  // String |  (optional) 

            try
            {
                apiInstance.productProfileQrcodeCreateQrsFileGet(fromUid, toUid, idProfile);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling DefaultApi.productProfileQrcodeCreateQrsFileGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiDefaultApi();
$fromUid = fromUid_example; // String | 
$toUid = toUid_example; // String | 
$idProfile = idProfile_example; // String | 

try {
    $api_instance->productProfileQrcodeCreateQrsFileGet($fromUid, $toUid, $idProfile);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->productProfileQrcodeCreateQrsFileGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::DefaultApi;

my $api_instance = WWW::SwaggerClient::DefaultApi->new();
my $fromUid = fromUid_example; # String | 
my $toUid = toUid_example; # String | 
my $idProfile = idProfile_example; # String | 

eval { 
    $api_instance->productProfileQrcodeCreateQrsFileGet(fromUid => $fromUid, toUid => $toUid, idProfile => $idProfile);
};
if ($@) {
    warn "Exception when calling DefaultApi->productProfileQrcodeCreateQrsFileGet: $@\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.DefaultApi()
fromUid = fromUid_example # String |  (optional)
toUid = toUid_example # String |  (optional)
idProfile = idProfile_example # String |  (optional)

try: 
    api_instance.product_profile_qrcode_create_qrs_file_get(fromUid=fromUid, toUid=toUid, idProfile=idProfile)
except ApiException as e:
    print("Exception when calling DefaultApi->productProfileQrcodeCreateQrsFileGet: %s\n" % e)

Parameters

Query parameters
Name Description
fromUid
String
toUid
String
idProfile
String

Responses

Status: 200 - OK


productProfileQrcodeCreateQrsFileGet_9


/product-profile/qrcode/createQrsFile

Usage and SDK Samples

curl -X GET\
"http://localhost:3004//product-profile/qrcode/createQrsFile?fromUid=&toUid=&idProfile="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DefaultApi;

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

public class DefaultApiExample {

    public static void main(String[] args) {
        
        DefaultApi apiInstance = new DefaultApi();
        String fromUid = fromUid_example; // String | 
        String toUid = toUid_example; // String | 
        String idProfile = idProfile_example; // String | 
        try {
            apiInstance.productProfileQrcodeCreateQrsFileGet_0(fromUid, toUid, idProfile);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#productProfileQrcodeCreateQrsFileGet_0");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.DefaultApi;

public class DefaultApiExample {

    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        String fromUid = fromUid_example; // String | 
        String toUid = toUid_example; // String | 
        String idProfile = idProfile_example; // String | 
        try {
            apiInstance.productProfileQrcodeCreateQrsFileGet_0(fromUid, toUid, idProfile);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#productProfileQrcodeCreateQrsFileGet_0");
            e.printStackTrace();
        }
    }
}
String *fromUid = fromUid_example; //  (optional)
String *toUid = toUid_example; //  (optional)
String *idProfile = idProfile_example; //  (optional)

DefaultApi *apiInstance = [[DefaultApi alloc] init];

[apiInstance productProfileQrcodeCreateQrsFileGet_9With:fromUid
    toUid:toUid
    idProfile:idProfile
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var 1TrueId30MakerCustomer = require('1_true_id_30_maker_customer');

var api = new 1TrueId30MakerCustomer.DefaultApi()
var opts = { 
  'fromUid': fromUid_example, // {{String}} 
  'toUid': toUid_example, // {{String}} 
  'idProfile': idProfile_example // {{String}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.productProfileQrcodeCreateQrsFileGet_0(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new DefaultApi();
            var fromUid = fromUid_example;  // String |  (optional) 
            var toUid = toUid_example;  // String |  (optional) 
            var idProfile = idProfile_example;  // String |  (optional) 

            try
            {
                apiInstance.productProfileQrcodeCreateQrsFileGet_0(fromUid, toUid, idProfile);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling DefaultApi.productProfileQrcodeCreateQrsFileGet_0: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiDefaultApi();
$fromUid = fromUid_example; // String | 
$toUid = toUid_example; // String | 
$idProfile = idProfile_example; // String | 

try {
    $api_instance->productProfileQrcodeCreateQrsFileGet_0($fromUid, $toUid, $idProfile);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->productProfileQrcodeCreateQrsFileGet_0: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::DefaultApi;

my $api_instance = WWW::SwaggerClient::DefaultApi->new();
my $fromUid = fromUid_example; # String | 
my $toUid = toUid_example; # String | 
my $idProfile = idProfile_example; # String | 

eval { 
    $api_instance->productProfileQrcodeCreateQrsFileGet_0(fromUid => $fromUid, toUid => $toUid, idProfile => $idProfile);
};
if ($@) {
    warn "Exception when calling DefaultApi->productProfileQrcodeCreateQrsFileGet_0: $@\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.DefaultApi()
fromUid = fromUid_example # String |  (optional)
toUid = toUid_example # String |  (optional)
idProfile = idProfile_example # String |  (optional)

try: 
    api_instance.product_profile_qrcode_create_qrs_file_get_0(fromUid=fromUid, toUid=toUid, idProfile=idProfile)
except ApiException as e:
    print("Exception when calling DefaultApi->productProfileQrcodeCreateQrsFileGet_0: %s\n" % e)

Parameters

Query parameters
Name Description
fromUid
String
toUid
String
idProfile
String

Responses

Status: 200 - OK


productProfileQrcodeCreateQrsGet


/productProfile/qrcode/createQrs

Usage and SDK Samples

curl -X GET\
"http://localhost:3004//productProfile/qrcode/createQrs?cardType=&profileId=&enc=&qty="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DefaultApi;

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

public class DefaultApiExample {

    public static void main(String[] args) {
        
        DefaultApi apiInstance = new DefaultApi();
        String cardType = cardType_example; // String | 
        String profileId = profileId_example; // String | 
        String enc = enc_example; // String | 
        String qty = qty_example; // String | 
        try {
            apiInstance.productProfileQrcodeCreateQrsGet(cardType, profileId, enc, qty);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#productProfileQrcodeCreateQrsGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.DefaultApi;

public class DefaultApiExample {

    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        String cardType = cardType_example; // String | 
        String profileId = profileId_example; // String | 
        String enc = enc_example; // String | 
        String qty = qty_example; // String | 
        try {
            apiInstance.productProfileQrcodeCreateQrsGet(cardType, profileId, enc, qty);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#productProfileQrcodeCreateQrsGet");
            e.printStackTrace();
        }
    }
}
String *cardType = cardType_example; //  (optional)
String *profileId = profileId_example; //  (optional)
String *enc = enc_example; //  (optional)
String *qty = qty_example; //  (optional)

DefaultApi *apiInstance = [[DefaultApi alloc] init];

[apiInstance productProfileQrcodeCreateQrsGetWith:cardType
    profileId:profileId
    enc:enc
    qty:qty
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var 1TrueId30MakerCustomer = require('1_true_id_30_maker_customer');

var api = new 1TrueId30MakerCustomer.DefaultApi()
var opts = { 
  'cardType': cardType_example, // {{String}} 
  'profileId': profileId_example, // {{String}} 
  'enc': enc_example, // {{String}} 
  'qty': qty_example // {{String}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.productProfileQrcodeCreateQrsGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new DefaultApi();
            var cardType = cardType_example;  // String |  (optional) 
            var profileId = profileId_example;  // String |  (optional) 
            var enc = enc_example;  // String |  (optional) 
            var qty = qty_example;  // String |  (optional) 

            try
            {
                apiInstance.productProfileQrcodeCreateQrsGet(cardType, profileId, enc, qty);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling DefaultApi.productProfileQrcodeCreateQrsGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiDefaultApi();
$cardType = cardType_example; // String | 
$profileId = profileId_example; // String | 
$enc = enc_example; // String | 
$qty = qty_example; // String | 

try {
    $api_instance->productProfileQrcodeCreateQrsGet($cardType, $profileId, $enc, $qty);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->productProfileQrcodeCreateQrsGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::DefaultApi;

my $api_instance = WWW::SwaggerClient::DefaultApi->new();
my $cardType = cardType_example; # String | 
my $profileId = profileId_example; # String | 
my $enc = enc_example; # String | 
my $qty = qty_example; # String | 

eval { 
    $api_instance->productProfileQrcodeCreateQrsGet(cardType => $cardType, profileId => $profileId, enc => $enc, qty => $qty);
};
if ($@) {
    warn "Exception when calling DefaultApi->productProfileQrcodeCreateQrsGet: $@\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.DefaultApi()
cardType = cardType_example # String |  (optional)
profileId = profileId_example # String |  (optional)
enc = enc_example # String |  (optional)
qty = qty_example # String |  (optional)

try: 
    api_instance.product_profile_qrcode_create_qrs_get(cardType=cardType, profileId=profileId, enc=enc, qty=qty)
except ApiException as e:
    print("Exception when calling DefaultApi->productProfileQrcodeCreateQrsGet: %s\n" % e)

Parameters

Query parameters
Name Description
cardType
String
profileId
String
enc
String
qty
String

Responses

Status: 200 - OK


productProfileQrcodeCreateQrsGet_10


/product-profile/qrcode/createQrs

Usage and SDK Samples

curl -X GET\
"http://localhost:3004//product-profile/qrcode/createQrs?cardType=&profileId=&enc=&qty="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DefaultApi;

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

public class DefaultApiExample {

    public static void main(String[] args) {
        
        DefaultApi apiInstance = new DefaultApi();
        String cardType = cardType_example; // String | 
        String profileId = profileId_example; // String | 
        String enc = enc_example; // String | 
        String qty = qty_example; // String | 
        try {
            apiInstance.productProfileQrcodeCreateQrsGet_0(cardType, profileId, enc, qty);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#productProfileQrcodeCreateQrsGet_0");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.DefaultApi;

public class DefaultApiExample {

    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        String cardType = cardType_example; // String | 
        String profileId = profileId_example; // String | 
        String enc = enc_example; // String | 
        String qty = qty_example; // String | 
        try {
            apiInstance.productProfileQrcodeCreateQrsGet_0(cardType, profileId, enc, qty);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#productProfileQrcodeCreateQrsGet_0");
            e.printStackTrace();
        }
    }
}
String *cardType = cardType_example; //  (optional)
String *profileId = profileId_example; //  (optional)
String *enc = enc_example; //  (optional)
String *qty = qty_example; //  (optional)

DefaultApi *apiInstance = [[DefaultApi alloc] init];

[apiInstance productProfileQrcodeCreateQrsGet_10With:cardType
    profileId:profileId
    enc:enc
    qty:qty
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var 1TrueId30MakerCustomer = require('1_true_id_30_maker_customer');

var api = new 1TrueId30MakerCustomer.DefaultApi()
var opts = { 
  'cardType': cardType_example, // {{String}} 
  'profileId': profileId_example, // {{String}} 
  'enc': enc_example, // {{String}} 
  'qty': qty_example // {{String}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.productProfileQrcodeCreateQrsGet_0(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new DefaultApi();
            var cardType = cardType_example;  // String |  (optional) 
            var profileId = profileId_example;  // String |  (optional) 
            var enc = enc_example;  // String |  (optional) 
            var qty = qty_example;  // String |  (optional) 

            try
            {
                apiInstance.productProfileQrcodeCreateQrsGet_0(cardType, profileId, enc, qty);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling DefaultApi.productProfileQrcodeCreateQrsGet_0: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiDefaultApi();
$cardType = cardType_example; // String | 
$profileId = profileId_example; // String | 
$enc = enc_example; // String | 
$qty = qty_example; // String | 

try {
    $api_instance->productProfileQrcodeCreateQrsGet_0($cardType, $profileId, $enc, $qty);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->productProfileQrcodeCreateQrsGet_0: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::DefaultApi;

my $api_instance = WWW::SwaggerClient::DefaultApi->new();
my $cardType = cardType_example; # String | 
my $profileId = profileId_example; # String | 
my $enc = enc_example; # String | 
my $qty = qty_example; # String | 

eval { 
    $api_instance->productProfileQrcodeCreateQrsGet_0(cardType => $cardType, profileId => $profileId, enc => $enc, qty => $qty);
};
if ($@) {
    warn "Exception when calling DefaultApi->productProfileQrcodeCreateQrsGet_0: $@\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.DefaultApi()
cardType = cardType_example # String |  (optional)
profileId = profileId_example # String |  (optional)
enc = enc_example # String |  (optional)
qty = qty_example # String |  (optional)

try: 
    api_instance.product_profile_qrcode_create_qrs_get_0(cardType=cardType, profileId=profileId, enc=enc, qty=qty)
except ApiException as e:
    print("Exception when calling DefaultApi->productProfileQrcodeCreateQrsGet_0: %s\n" % e)

Parameters

Query parameters
Name Description
cardType
String
profileId
String
enc
String
qty
String

Responses

Status: 200 - OK


productProfileQrcodeCreateQrsSvgGet


/productProfile/qrcode/createQrsSvg

Usage and SDK Samples

curl -X GET\
"http://localhost:3004//productProfile/qrcode/createQrsSvg?fromUid=&toUid=&idProfile="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DefaultApi;

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

public class DefaultApiExample {

    public static void main(String[] args) {
        
        DefaultApi apiInstance = new DefaultApi();
        String fromUid = fromUid_example; // String | 
        String toUid = toUid_example; // String | 
        String idProfile = idProfile_example; // String | 
        try {
            apiInstance.productProfileQrcodeCreateQrsSvgGet(fromUid, toUid, idProfile);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#productProfileQrcodeCreateQrsSvgGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.DefaultApi;

public class DefaultApiExample {

    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        String fromUid = fromUid_example; // String | 
        String toUid = toUid_example; // String | 
        String idProfile = idProfile_example; // String | 
        try {
            apiInstance.productProfileQrcodeCreateQrsSvgGet(fromUid, toUid, idProfile);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#productProfileQrcodeCreateQrsSvgGet");
            e.printStackTrace();
        }
    }
}
String *fromUid = fromUid_example; //  (optional)
String *toUid = toUid_example; //  (optional)
String *idProfile = idProfile_example; //  (optional)

DefaultApi *apiInstance = [[DefaultApi alloc] init];

[apiInstance productProfileQrcodeCreateQrsSvgGetWith:fromUid
    toUid:toUid
    idProfile:idProfile
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var 1TrueId30MakerCustomer = require('1_true_id_30_maker_customer');

var api = new 1TrueId30MakerCustomer.DefaultApi()
var opts = { 
  'fromUid': fromUid_example, // {{String}} 
  'toUid': toUid_example, // {{String}} 
  'idProfile': idProfile_example // {{String}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.productProfileQrcodeCreateQrsSvgGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new DefaultApi();
            var fromUid = fromUid_example;  // String |  (optional) 
            var toUid = toUid_example;  // String |  (optional) 
            var idProfile = idProfile_example;  // String |  (optional) 

            try
            {
                apiInstance.productProfileQrcodeCreateQrsSvgGet(fromUid, toUid, idProfile);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling DefaultApi.productProfileQrcodeCreateQrsSvgGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiDefaultApi();
$fromUid = fromUid_example; // String | 
$toUid = toUid_example; // String | 
$idProfile = idProfile_example; // String | 

try {
    $api_instance->productProfileQrcodeCreateQrsSvgGet($fromUid, $toUid, $idProfile);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->productProfileQrcodeCreateQrsSvgGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::DefaultApi;

my $api_instance = WWW::SwaggerClient::DefaultApi->new();
my $fromUid = fromUid_example; # String | 
my $toUid = toUid_example; # String | 
my $idProfile = idProfile_example; # String | 

eval { 
    $api_instance->productProfileQrcodeCreateQrsSvgGet(fromUid => $fromUid, toUid => $toUid, idProfile => $idProfile);
};
if ($@) {
    warn "Exception when calling DefaultApi->productProfileQrcodeCreateQrsSvgGet: $@\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.DefaultApi()
fromUid = fromUid_example # String |  (optional)
toUid = toUid_example # String |  (optional)
idProfile = idProfile_example # String |  (optional)

try: 
    api_instance.product_profile_qrcode_create_qrs_svg_get(fromUid=fromUid, toUid=toUid, idProfile=idProfile)
except ApiException as e:
    print("Exception when calling DefaultApi->productProfileQrcodeCreateQrsSvgGet: %s\n" % e)

Parameters

Query parameters
Name Description
fromUid
String
toUid
String
idProfile
String

Responses

Status: 200 - OK


productProfileQrcodeCreateQrsSvgGet_11


/product-profile/qrcode/createQrsSvg

Usage and SDK Samples

curl -X GET\
"http://localhost:3004//product-profile/qrcode/createQrsSvg?fromUid=&toUid=&idProfile="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DefaultApi;

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

public class DefaultApiExample {

    public static void main(String[] args) {
        
        DefaultApi apiInstance = new DefaultApi();
        String fromUid = fromUid_example; // String | 
        String toUid = toUid_example; // String | 
        String idProfile = idProfile_example; // String | 
        try {
            apiInstance.productProfileQrcodeCreateQrsSvgGet_0(fromUid, toUid, idProfile);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#productProfileQrcodeCreateQrsSvgGet_0");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.DefaultApi;

public class DefaultApiExample {

    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        String fromUid = fromUid_example; // String | 
        String toUid = toUid_example; // String | 
        String idProfile = idProfile_example; // String | 
        try {
            apiInstance.productProfileQrcodeCreateQrsSvgGet_0(fromUid, toUid, idProfile);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#productProfileQrcodeCreateQrsSvgGet_0");
            e.printStackTrace();
        }
    }
}
String *fromUid = fromUid_example; //  (optional)
String *toUid = toUid_example; //  (optional)
String *idProfile = idProfile_example; //  (optional)

DefaultApi *apiInstance = [[DefaultApi alloc] init];

[apiInstance productProfileQrcodeCreateQrsSvgGet_11With:fromUid
    toUid:toUid
    idProfile:idProfile
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var 1TrueId30MakerCustomer = require('1_true_id_30_maker_customer');

var api = new 1TrueId30MakerCustomer.DefaultApi()
var opts = { 
  'fromUid': fromUid_example, // {{String}} 
  'toUid': toUid_example, // {{String}} 
  'idProfile': idProfile_example // {{String}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.productProfileQrcodeCreateQrsSvgGet_0(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new DefaultApi();
            var fromUid = fromUid_example;  // String |  (optional) 
            var toUid = toUid_example;  // String |  (optional) 
            var idProfile = idProfile_example;  // String |  (optional) 

            try
            {
                apiInstance.productProfileQrcodeCreateQrsSvgGet_0(fromUid, toUid, idProfile);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling DefaultApi.productProfileQrcodeCreateQrsSvgGet_0: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiDefaultApi();
$fromUid = fromUid_example; // String | 
$toUid = toUid_example; // String | 
$idProfile = idProfile_example; // String | 

try {
    $api_instance->productProfileQrcodeCreateQrsSvgGet_0($fromUid, $toUid, $idProfile);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->productProfileQrcodeCreateQrsSvgGet_0: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::DefaultApi;

my $api_instance = WWW::SwaggerClient::DefaultApi->new();
my $fromUid = fromUid_example; # String | 
my $toUid = toUid_example; # String | 
my $idProfile = idProfile_example; # String | 

eval { 
    $api_instance->productProfileQrcodeCreateQrsSvgGet_0(fromUid => $fromUid, toUid => $toUid, idProfile => $idProfile);
};
if ($@) {
    warn "Exception when calling DefaultApi->productProfileQrcodeCreateQrsSvgGet_0: $@\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.DefaultApi()
fromUid = fromUid_example # String |  (optional)
toUid = toUid_example # String |  (optional)
idProfile = idProfile_example # String |  (optional)

try: 
    api_instance.product_profile_qrcode_create_qrs_svg_get_0(fromUid=fromUid, toUid=toUid, idProfile=idProfile)
except ApiException as e:
    print("Exception when calling DefaultApi->productProfileQrcodeCreateQrsSvgGet_0: %s\n" % e)

Parameters

Query parameters
Name Description
fromUid
String
toUid
String
idProfile
String

Responses

Status: 200 - OK


productProfileUpdateMainImagePost


/productProfile/updateMainImage

Usage and SDK Samples

curl -X POST\
-H "Content-Type: application/json"\
"http://localhost:3004//productProfile/updateMainImage"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DefaultApi;

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

public class DefaultApiExample {

    public static void main(String[] args) {
        
        DefaultApi apiInstance = new DefaultApi();
        ProductProfile_updateMainImage_body_1 body = ; // ProductProfile_updateMainImage_body_1 | 
        try {
            apiInstance.productProfileUpdateMainImagePost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#productProfileUpdateMainImagePost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.DefaultApi;

public class DefaultApiExample {

    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        ProductProfile_updateMainImage_body_1 body = ; // ProductProfile_updateMainImage_body_1 | 
        try {
            apiInstance.productProfileUpdateMainImagePost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#productProfileUpdateMainImagePost");
            e.printStackTrace();
        }
    }
}
ProductProfile_updateMainImage_body_1 *body = ; //  (optional)

DefaultApi *apiInstance = [[DefaultApi alloc] init];

[apiInstance productProfileUpdateMainImagePostWith:body
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var 1TrueId30MakerCustomer = require('1_true_id_30_maker_customer');

var api = new 1TrueId30MakerCustomer.DefaultApi()
var opts = { 
  'body':  // {{ProductProfile_updateMainImage_body_1}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.productProfileUpdateMainImagePost(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new DefaultApi();
            var body = new ProductProfile_updateMainImage_body_1(); // ProductProfile_updateMainImage_body_1 |  (optional) 

            try
            {
                apiInstance.productProfileUpdateMainImagePost(body);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling DefaultApi.productProfileUpdateMainImagePost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiDefaultApi();
$body = ; // ProductProfile_updateMainImage_body_1 | 

try {
    $api_instance->productProfileUpdateMainImagePost($body);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->productProfileUpdateMainImagePost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::DefaultApi;

my $api_instance = WWW::SwaggerClient::DefaultApi->new();
my $body = WWW::SwaggerClient::Object::ProductProfile_updateMainImage_body_1->new(); # ProductProfile_updateMainImage_body_1 | 

eval { 
    $api_instance->productProfileUpdateMainImagePost(body => $body);
};
if ($@) {
    warn "Exception when calling DefaultApi->productProfileUpdateMainImagePost: $@\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.DefaultApi()
body =  # ProductProfile_updateMainImage_body_1 |  (optional)

try: 
    api_instance.product_profile_update_main_image_post(body=body)
except ApiException as e:
    print("Exception when calling DefaultApi->productProfileUpdateMainImagePost: %s\n" % e)

Parameters

Body parameters
Name Description
body

Responses

Status: 200 - OK


productProfileUpdateMainImagePost_12


/product-profile/updateMainImage

Usage and SDK Samples

curl -X POST\
-H "Content-Type: application/json"\
"http://localhost:3004//product-profile/updateMainImage"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DefaultApi;

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

public class DefaultApiExample {

    public static void main(String[] args) {
        
        DefaultApi apiInstance = new DefaultApi();
        Productprofile_updateMainImage_body_1 body = ; // Productprofile_updateMainImage_body_1 | 
        try {
            apiInstance.productProfileUpdateMainImagePost_0(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#productProfileUpdateMainImagePost_0");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.DefaultApi;

public class DefaultApiExample {

    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        Productprofile_updateMainImage_body_1 body = ; // Productprofile_updateMainImage_body_1 | 
        try {
            apiInstance.productProfileUpdateMainImagePost_0(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#productProfileUpdateMainImagePost_0");
            e.printStackTrace();
        }
    }
}
Productprofile_updateMainImage_body_1 *body = ; //  (optional)

DefaultApi *apiInstance = [[DefaultApi alloc] init];

[apiInstance productProfileUpdateMainImagePost_12With:body
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var 1TrueId30MakerCustomer = require('1_true_id_30_maker_customer');

var api = new 1TrueId30MakerCustomer.DefaultApi()
var opts = { 
  'body':  // {{Productprofile_updateMainImage_body_1}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.productProfileUpdateMainImagePost_0(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new DefaultApi();
            var body = new Productprofile_updateMainImage_body_1(); // Productprofile_updateMainImage_body_1 |  (optional) 

            try
            {
                apiInstance.productProfileUpdateMainImagePost_0(body);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling DefaultApi.productProfileUpdateMainImagePost_0: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiDefaultApi();
$body = ; // Productprofile_updateMainImage_body_1 | 

try {
    $api_instance->productProfileUpdateMainImagePost_0($body);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->productProfileUpdateMainImagePost_0: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::DefaultApi;

my $api_instance = WWW::SwaggerClient::DefaultApi->new();
my $body = WWW::SwaggerClient::Object::Productprofile_updateMainImage_body_1->new(); # Productprofile_updateMainImage_body_1 | 

eval { 
    $api_instance->productProfileUpdateMainImagePost_0(body => $body);
};
if ($@) {
    warn "Exception when calling DefaultApi->productProfileUpdateMainImagePost_0: $@\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.DefaultApi()
body =  # Productprofile_updateMainImage_body_1 |  (optional)

try: 
    api_instance.product_profile_update_main_image_post_0(body=body)
except ApiException as e:
    print("Exception when calling DefaultApi->productProfileUpdateMainImagePost_0: %s\n" % e)

Parameters

Body parameters
Name Description
body

Responses

Status: 200 - OK


productProfileUpdateMainImagePut


/productProfile/updateMainImage

Usage and SDK Samples

curl -X PUT\
-H "Content-Type: application/json"\
"http://localhost:3004//productProfile/updateMainImage"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DefaultApi;

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

public class DefaultApiExample {

    public static void main(String[] args) {
        
        DefaultApi apiInstance = new DefaultApi();
        ProductProfile_updateMainImage_body body = ; // ProductProfile_updateMainImage_body | 
        try {
            apiInstance.productProfileUpdateMainImagePut(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#productProfileUpdateMainImagePut");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.DefaultApi;

public class DefaultApiExample {

    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        ProductProfile_updateMainImage_body body = ; // ProductProfile_updateMainImage_body | 
        try {
            apiInstance.productProfileUpdateMainImagePut(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#productProfileUpdateMainImagePut");
            e.printStackTrace();
        }
    }
}
ProductProfile_updateMainImage_body *body = ; //  (optional)

DefaultApi *apiInstance = [[DefaultApi alloc] init];

[apiInstance productProfileUpdateMainImagePutWith:body
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var 1TrueId30MakerCustomer = require('1_true_id_30_maker_customer');

var api = new 1TrueId30MakerCustomer.DefaultApi()
var opts = { 
  'body':  // {{ProductProfile_updateMainImage_body}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.productProfileUpdateMainImagePut(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new DefaultApi();
            var body = new ProductProfile_updateMainImage_body(); // ProductProfile_updateMainImage_body |  (optional) 

            try
            {
                apiInstance.productProfileUpdateMainImagePut(body);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling DefaultApi.productProfileUpdateMainImagePut: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiDefaultApi();
$body = ; // ProductProfile_updateMainImage_body | 

try {
    $api_instance->productProfileUpdateMainImagePut($body);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->productProfileUpdateMainImagePut: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::DefaultApi;

my $api_instance = WWW::SwaggerClient::DefaultApi->new();
my $body = WWW::SwaggerClient::Object::ProductProfile_updateMainImage_body->new(); # ProductProfile_updateMainImage_body | 

eval { 
    $api_instance->productProfileUpdateMainImagePut(body => $body);
};
if ($@) {
    warn "Exception when calling DefaultApi->productProfileUpdateMainImagePut: $@\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.DefaultApi()
body =  # ProductProfile_updateMainImage_body |  (optional)

try: 
    api_instance.product_profile_update_main_image_put(body=body)
except ApiException as e:
    print("Exception when calling DefaultApi->productProfileUpdateMainImagePut: %s\n" % e)

Parameters

Body parameters
Name Description
body

Responses

Status: 200 - OK


productProfileUpdateMainImagePut_13


/product-profile/updateMainImage

Usage and SDK Samples

curl -X PUT\
-H "Content-Type: application/json"\
"http://localhost:3004//product-profile/updateMainImage"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DefaultApi;

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

public class DefaultApiExample {

    public static void main(String[] args) {
        
        DefaultApi apiInstance = new DefaultApi();
        Productprofile_updateMainImage_body body = ; // Productprofile_updateMainImage_body | 
        try {
            apiInstance.productProfileUpdateMainImagePut_0(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#productProfileUpdateMainImagePut_0");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.DefaultApi;

public class DefaultApiExample {

    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        Productprofile_updateMainImage_body body = ; // Productprofile_updateMainImage_body | 
        try {
            apiInstance.productProfileUpdateMainImagePut_0(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#productProfileUpdateMainImagePut_0");
            e.printStackTrace();
        }
    }
}
Productprofile_updateMainImage_body *body = ; //  (optional)

DefaultApi *apiInstance = [[DefaultApi alloc] init];

[apiInstance productProfileUpdateMainImagePut_13With:body
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var 1TrueId30MakerCustomer = require('1_true_id_30_maker_customer');

var api = new 1TrueId30MakerCustomer.DefaultApi()
var opts = { 
  'body':  // {{Productprofile_updateMainImage_body}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.productProfileUpdateMainImagePut_0(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new DefaultApi();
            var body = new Productprofile_updateMainImage_body(); // Productprofile_updateMainImage_body |  (optional) 

            try
            {
                apiInstance.productProfileUpdateMainImagePut_0(body);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling DefaultApi.productProfileUpdateMainImagePut_0: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiDefaultApi();
$body = ; // Productprofile_updateMainImage_body | 

try {
    $api_instance->productProfileUpdateMainImagePut_0($body);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->productProfileUpdateMainImagePut_0: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::DefaultApi;

my $api_instance = WWW::SwaggerClient::DefaultApi->new();
my $body = WWW::SwaggerClient::Object::Productprofile_updateMainImage_body->new(); # Productprofile_updateMainImage_body | 

eval { 
    $api_instance->productProfileUpdateMainImagePut_0(body => $body);
};
if ($@) {
    warn "Exception when calling DefaultApi->productProfileUpdateMainImagePut_0: $@\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.DefaultApi()
body =  # Productprofile_updateMainImage_body |  (optional)

try: 
    api_instance.product_profile_update_main_image_put_0(body=body)
except ApiException as e:
    print("Exception when calling DefaultApi->productProfileUpdateMainImagePut_0: %s\n" % e)

Parameters

Body parameters
Name Description
body

Responses

Status: 200 - OK


productProfileUpdateProductLottoPost


/productProfile/updateProductLotto

Usage and SDK Samples

curl -X POST\
-H "Content-Type: application/json"\
"http://localhost:3004//productProfile/updateProductLotto"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DefaultApi;

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

public class DefaultApiExample {

    public static void main(String[] args) {
        
        DefaultApi apiInstance = new DefaultApi();
        ProductProfile_updateProductLotto_body body = ; // ProductProfile_updateProductLotto_body | 
        try {
            apiInstance.productProfileUpdateProductLottoPost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#productProfileUpdateProductLottoPost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.DefaultApi;

public class DefaultApiExample {

    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        ProductProfile_updateProductLotto_body body = ; // ProductProfile_updateProductLotto_body | 
        try {
            apiInstance.productProfileUpdateProductLottoPost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#productProfileUpdateProductLottoPost");
            e.printStackTrace();
        }
    }
}
ProductProfile_updateProductLotto_body *body = ; //  (optional)

DefaultApi *apiInstance = [[DefaultApi alloc] init];

[apiInstance productProfileUpdateProductLottoPostWith:body
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var 1TrueId30MakerCustomer = require('1_true_id_30_maker_customer');

var api = new 1TrueId30MakerCustomer.DefaultApi()
var opts = { 
  'body':  // {{ProductProfile_updateProductLotto_body}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.productProfileUpdateProductLottoPost(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new DefaultApi();
            var body = new ProductProfile_updateProductLotto_body(); // ProductProfile_updateProductLotto_body |  (optional) 

            try
            {
                apiInstance.productProfileUpdateProductLottoPost(body);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling DefaultApi.productProfileUpdateProductLottoPost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiDefaultApi();
$body = ; // ProductProfile_updateProductLotto_body | 

try {
    $api_instance->productProfileUpdateProductLottoPost($body);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->productProfileUpdateProductLottoPost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::DefaultApi;

my $api_instance = WWW::SwaggerClient::DefaultApi->new();
my $body = WWW::SwaggerClient::Object::ProductProfile_updateProductLotto_body->new(); # ProductProfile_updateProductLotto_body | 

eval { 
    $api_instance->productProfileUpdateProductLottoPost(body => $body);
};
if ($@) {
    warn "Exception when calling DefaultApi->productProfileUpdateProductLottoPost: $@\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.DefaultApi()
body =  # ProductProfile_updateProductLotto_body |  (optional)

try: 
    api_instance.product_profile_update_product_lotto_post(body=body)
except ApiException as e:
    print("Exception when calling DefaultApi->productProfileUpdateProductLottoPost: %s\n" % e)

Parameters

Body parameters
Name Description
body

Responses

Status: 200 - OK


productProfileUpdateProductLottoPost_14


/product-profile/updateProductLotto

Usage and SDK Samples

curl -X POST\
-H "Content-Type: application/json"\
"http://localhost:3004//product-profile/updateProductLotto"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DefaultApi;

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

public class DefaultApiExample {

    public static void main(String[] args) {
        
        DefaultApi apiInstance = new DefaultApi();
        Productprofile_updateProductLotto_body body = ; // Productprofile_updateProductLotto_body | 
        try {
            apiInstance.productProfileUpdateProductLottoPost_0(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#productProfileUpdateProductLottoPost_0");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.DefaultApi;

public class DefaultApiExample {

    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        Productprofile_updateProductLotto_body body = ; // Productprofile_updateProductLotto_body | 
        try {
            apiInstance.productProfileUpdateProductLottoPost_0(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#productProfileUpdateProductLottoPost_0");
            e.printStackTrace();
        }
    }
}
Productprofile_updateProductLotto_body *body = ; //  (optional)

DefaultApi *apiInstance = [[DefaultApi alloc] init];

[apiInstance productProfileUpdateProductLottoPost_14With:body
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var 1TrueId30MakerCustomer = require('1_true_id_30_maker_customer');

var api = new 1TrueId30MakerCustomer.DefaultApi()
var opts = { 
  'body':  // {{Productprofile_updateProductLotto_body}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.productProfileUpdateProductLottoPost_0(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new DefaultApi();
            var body = new Productprofile_updateProductLotto_body(); // Productprofile_updateProductLotto_body |  (optional) 

            try
            {
                apiInstance.productProfileUpdateProductLottoPost_0(body);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling DefaultApi.productProfileUpdateProductLottoPost_0: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiDefaultApi();
$body = ; // Productprofile_updateProductLotto_body | 

try {
    $api_instance->productProfileUpdateProductLottoPost_0($body);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->productProfileUpdateProductLottoPost_0: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::DefaultApi;

my $api_instance = WWW::SwaggerClient::DefaultApi->new();
my $body = WWW::SwaggerClient::Object::Productprofile_updateProductLotto_body->new(); # Productprofile_updateProductLotto_body | 

eval { 
    $api_instance->productProfileUpdateProductLottoPost_0(body => $body);
};
if ($@) {
    warn "Exception when calling DefaultApi->productProfileUpdateProductLottoPost_0: $@\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.DefaultApi()
body =  # Productprofile_updateProductLotto_body |  (optional)

try: 
    api_instance.product_profile_update_product_lotto_post_0(body=body)
except ApiException as e:
    print("Exception when calling DefaultApi->productProfileUpdateProductLottoPost_0: %s\n" % e)

Parameters

Body parameters
Name Description
body

Responses

Status: 200 - OK


productProfileUpdateTechnicalImagePost


/productProfile/updateTechnicalImage

Usage and SDK Samples

curl -X POST\
-H "Content-Type: application/json"\
"http://localhost:3004//productProfile/updateTechnicalImage"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DefaultApi;

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

public class DefaultApiExample {

    public static void main(String[] args) {
        
        DefaultApi apiInstance = new DefaultApi();
        ProductProfile_updateTechnicalImage_body body = ; // ProductProfile_updateTechnicalImage_body | 
        try {
            apiInstance.productProfileUpdateTechnicalImagePost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#productProfileUpdateTechnicalImagePost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.DefaultApi;

public class DefaultApiExample {

    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        ProductProfile_updateTechnicalImage_body body = ; // ProductProfile_updateTechnicalImage_body | 
        try {
            apiInstance.productProfileUpdateTechnicalImagePost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#productProfileUpdateTechnicalImagePost");
            e.printStackTrace();
        }
    }
}
ProductProfile_updateTechnicalImage_body *body = ; //  (optional)

DefaultApi *apiInstance = [[DefaultApi alloc] init];

[apiInstance productProfileUpdateTechnicalImagePostWith:body
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var 1TrueId30MakerCustomer = require('1_true_id_30_maker_customer');

var api = new 1TrueId30MakerCustomer.DefaultApi()
var opts = { 
  'body':  // {{ProductProfile_updateTechnicalImage_body}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.productProfileUpdateTechnicalImagePost(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new DefaultApi();
            var body = new ProductProfile_updateTechnicalImage_body(); // ProductProfile_updateTechnicalImage_body |  (optional) 

            try
            {
                apiInstance.productProfileUpdateTechnicalImagePost(body);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling DefaultApi.productProfileUpdateTechnicalImagePost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiDefaultApi();
$body = ; // ProductProfile_updateTechnicalImage_body | 

try {
    $api_instance->productProfileUpdateTechnicalImagePost($body);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->productProfileUpdateTechnicalImagePost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::DefaultApi;

my $api_instance = WWW::SwaggerClient::DefaultApi->new();
my $body = WWW::SwaggerClient::Object::ProductProfile_updateTechnicalImage_body->new(); # ProductProfile_updateTechnicalImage_body | 

eval { 
    $api_instance->productProfileUpdateTechnicalImagePost(body => $body);
};
if ($@) {
    warn "Exception when calling DefaultApi->productProfileUpdateTechnicalImagePost: $@\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.DefaultApi()
body =  # ProductProfile_updateTechnicalImage_body |  (optional)

try: 
    api_instance.product_profile_update_technical_image_post(body=body)
except ApiException as e:
    print("Exception when calling DefaultApi->productProfileUpdateTechnicalImagePost: %s\n" % e)

Parameters

Body parameters
Name Description
body

Responses

Status: 200 - OK


productProfileUpdateTechnicalImagePost_15


/product-profile/updateTechnicalImage

Usage and SDK Samples

curl -X POST\
-H "Content-Type: application/json"\
"http://localhost:3004//product-profile/updateTechnicalImage"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DefaultApi;

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

public class DefaultApiExample {

    public static void main(String[] args) {
        
        DefaultApi apiInstance = new DefaultApi();
        Productprofile_updateTechnicalImage_body body = ; // Productprofile_updateTechnicalImage_body | 
        try {
            apiInstance.productProfileUpdateTechnicalImagePost_0(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#productProfileUpdateTechnicalImagePost_0");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.DefaultApi;

public class DefaultApiExample {

    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        Productprofile_updateTechnicalImage_body body = ; // Productprofile_updateTechnicalImage_body | 
        try {
            apiInstance.productProfileUpdateTechnicalImagePost_0(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#productProfileUpdateTechnicalImagePost_0");
            e.printStackTrace();
        }
    }
}
Productprofile_updateTechnicalImage_body *body = ; //  (optional)

DefaultApi *apiInstance = [[DefaultApi alloc] init];

[apiInstance productProfileUpdateTechnicalImagePost_15With:body
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var 1TrueId30MakerCustomer = require('1_true_id_30_maker_customer');

var api = new 1TrueId30MakerCustomer.DefaultApi()
var opts = { 
  'body':  // {{Productprofile_updateTechnicalImage_body}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.productProfileUpdateTechnicalImagePost_0(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new DefaultApi();
            var body = new Productprofile_updateTechnicalImage_body(); // Productprofile_updateTechnicalImage_body |  (optional) 

            try
            {
                apiInstance.productProfileUpdateTechnicalImagePost_0(body);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling DefaultApi.productProfileUpdateTechnicalImagePost_0: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiDefaultApi();
$body = ; // Productprofile_updateTechnicalImage_body | 

try {
    $api_instance->productProfileUpdateTechnicalImagePost_0($body);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->productProfileUpdateTechnicalImagePost_0: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::DefaultApi;

my $api_instance = WWW::SwaggerClient::DefaultApi->new();
my $body = WWW::SwaggerClient::Object::Productprofile_updateTechnicalImage_body->new(); # Productprofile_updateTechnicalImage_body | 

eval { 
    $api_instance->productProfileUpdateTechnicalImagePost_0(body => $body);
};
if ($@) {
    warn "Exception when calling DefaultApi->productProfileUpdateTechnicalImagePost_0: $@\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.DefaultApi()
body =  # Productprofile_updateTechnicalImage_body |  (optional)

try: 
    api_instance.product_profile_update_technical_image_post_0(body=body)
except ApiException as e:
    print("Exception when calling DefaultApi->productProfileUpdateTechnicalImagePost_0: %s\n" % e)

Parameters

Body parameters
Name Description
body

Responses

Status: 200 - OK


productProfileValidateProductProfilePost


/productProfile/validateProductProfile

Usage and SDK Samples

curl -X POST\
-H "Content-Type: application/json"\
"http://localhost:3004//productProfile/validateProductProfile"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DefaultApi;

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

public class DefaultApiExample {

    public static void main(String[] args) {
        
        DefaultApi apiInstance = new DefaultApi();
        ProductProfile_validateProductProfile_body body = ; // ProductProfile_validateProductProfile_body | 
        try {
            apiInstance.productProfileValidateProductProfilePost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#productProfileValidateProductProfilePost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.DefaultApi;

public class DefaultApiExample {

    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        ProductProfile_validateProductProfile_body body = ; // ProductProfile_validateProductProfile_body | 
        try {
            apiInstance.productProfileValidateProductProfilePost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#productProfileValidateProductProfilePost");
            e.printStackTrace();
        }
    }
}
ProductProfile_validateProductProfile_body *body = ; //  (optional)

DefaultApi *apiInstance = [[DefaultApi alloc] init];

[apiInstance productProfileValidateProductProfilePostWith:body
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var 1TrueId30MakerCustomer = require('1_true_id_30_maker_customer');

var api = new 1TrueId30MakerCustomer.DefaultApi()
var opts = { 
  'body':  // {{ProductProfile_validateProductProfile_body}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.productProfileValidateProductProfilePost(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new DefaultApi();
            var body = new ProductProfile_validateProductProfile_body(); // ProductProfile_validateProductProfile_body |  (optional) 

            try
            {
                apiInstance.productProfileValidateProductProfilePost(body);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling DefaultApi.productProfileValidateProductProfilePost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiDefaultApi();
$body = ; // ProductProfile_validateProductProfile_body | 

try {
    $api_instance->productProfileValidateProductProfilePost($body);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->productProfileValidateProductProfilePost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::DefaultApi;

my $api_instance = WWW::SwaggerClient::DefaultApi->new();
my $body = WWW::SwaggerClient::Object::ProductProfile_validateProductProfile_body->new(); # ProductProfile_validateProductProfile_body | 

eval { 
    $api_instance->productProfileValidateProductProfilePost(body => $body);
};
if ($@) {
    warn "Exception when calling DefaultApi->productProfileValidateProductProfilePost: $@\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.DefaultApi()
body =  # ProductProfile_validateProductProfile_body |  (optional)

try: 
    api_instance.product_profile_validate_product_profile_post(body=body)
except ApiException as e:
    print("Exception when calling DefaultApi->productProfileValidateProductProfilePost: %s\n" % e)

Parameters

Body parameters
Name Description
body

Responses

Status: 200 - OK


productProfileValidateProductProfilePost_16


/product-profile/validateProductProfile

Usage and SDK Samples

curl -X POST\
-H "Content-Type: application/json"\
"http://localhost:3004//product-profile/validateProductProfile"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DefaultApi;

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

public class DefaultApiExample {

    public static void main(String[] args) {
        
        DefaultApi apiInstance = new DefaultApi();
        Productprofile_validateProductProfile_body body = ; // Productprofile_validateProductProfile_body | 
        try {
            apiInstance.productProfileValidateProductProfilePost_0(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#productProfileValidateProductProfilePost_0");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.DefaultApi;

public class DefaultApiExample {

    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        Productprofile_validateProductProfile_body body = ; // Productprofile_validateProductProfile_body | 
        try {
            apiInstance.productProfileValidateProductProfilePost_0(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#productProfileValidateProductProfilePost_0");
            e.printStackTrace();
        }
    }
}
Productprofile_validateProductProfile_body *body = ; //  (optional)

DefaultApi *apiInstance = [[DefaultApi alloc] init];

[apiInstance productProfileValidateProductProfilePost_16With:body
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var 1TrueId30MakerCustomer = require('1_true_id_30_maker_customer');

var api = new 1TrueId30MakerCustomer.DefaultApi()
var opts = { 
  'body':  // {{Productprofile_validateProductProfile_body}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.productProfileValidateProductProfilePost_0(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new DefaultApi();
            var body = new Productprofile_validateProductProfile_body(); // Productprofile_validateProductProfile_body |  (optional) 

            try
            {
                apiInstance.productProfileValidateProductProfilePost_0(body);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling DefaultApi.productProfileValidateProductProfilePost_0: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiDefaultApi();
$body = ; // Productprofile_validateProductProfile_body | 

try {
    $api_instance->productProfileValidateProductProfilePost_0($body);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->productProfileValidateProductProfilePost_0: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::DefaultApi;

my $api_instance = WWW::SwaggerClient::DefaultApi->new();
my $body = WWW::SwaggerClient::Object::Productprofile_validateProductProfile_body->new(); # Productprofile_validateProductProfile_body | 

eval { 
    $api_instance->productProfileValidateProductProfilePost_0(body => $body);
};
if ($@) {
    warn "Exception when calling DefaultApi->productProfileValidateProductProfilePost_0: $@\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.DefaultApi()
body =  # Productprofile_validateProductProfile_body |  (optional)

try: 
    api_instance.product_profile_validate_product_profile_post_0(body=body)
except ApiException as e:
    print("Exception when calling DefaultApi->productProfileValidateProductProfilePost_0: %s\n" % e)

Parameters

Body parameters
Name Description
body

Responses

Status: 200 - OK


usersGet


/users/

Usage and SDK Samples

curl -X GET\
"http://localhost:3004//users/?sort="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DefaultApi;

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

public class DefaultApiExample {

    public static void main(String[] args) {
        
        DefaultApi apiInstance = new DefaultApi();
        String sort = sort_example; // String | 
        try {
            apiInstance.usersGet(sort);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#usersGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.DefaultApi;

public class DefaultApiExample {

    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        String sort = sort_example; // String | 
        try {
            apiInstance.usersGet(sort);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#usersGet");
            e.printStackTrace();
        }
    }
}
String *sort = sort_example; //  (optional)

DefaultApi *apiInstance = [[DefaultApi alloc] init];

[apiInstance usersGetWith:sort
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var 1TrueId30MakerCustomer = require('1_true_id_30_maker_customer');

var api = new 1TrueId30MakerCustomer.DefaultApi()
var opts = { 
  'sort': sort_example // {{String}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.usersGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new DefaultApi();
            var sort = sort_example;  // String |  (optional) 

            try
            {
                apiInstance.usersGet(sort);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling DefaultApi.usersGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiDefaultApi();
$sort = sort_example; // String | 

try {
    $api_instance->usersGet($sort);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->usersGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::DefaultApi;

my $api_instance = WWW::SwaggerClient::DefaultApi->new();
my $sort = sort_example; # String | 

eval { 
    $api_instance->usersGet(sort => $sort);
};
if ($@) {
    warn "Exception when calling DefaultApi->usersGet: $@\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.DefaultApi()
sort = sort_example # String |  (optional)

try: 
    api_instance.users_get(sort=sort)
except ApiException as e:
    print("Exception when calling DefaultApi->usersGet: %s\n" % e)

Parameters

Query parameters
Name Description
sort
String

Responses

Status: 200 - OK


usersSendAlertMailPut


/users/sendAlertMail

Usage and SDK Samples

curl -X PUT\
"http://localhost:3004//users/sendAlertMail"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DefaultApi;

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

public class DefaultApiExample {

    public static void main(String[] args) {
        
        DefaultApi apiInstance = new DefaultApi();
        try {
            apiInstance.usersSendAlertMailPut();
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#usersSendAlertMailPut");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.DefaultApi;

public class DefaultApiExample {

    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        try {
            apiInstance.usersSendAlertMailPut();
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#usersSendAlertMailPut");
            e.printStackTrace();
        }
    }
}

DefaultApi *apiInstance = [[DefaultApi alloc] init];

[apiInstance usersSendAlertMailPutWithCompletionHandler: 
              ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var 1TrueId30MakerCustomer = require('1_true_id_30_maker_customer');

var api = new 1TrueId30MakerCustomer.DefaultApi()
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.usersSendAlertMailPut(callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new DefaultApi();

            try
            {
                apiInstance.usersSendAlertMailPut();
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling DefaultApi.usersSendAlertMailPut: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiDefaultApi();

try {
    $api_instance->usersSendAlertMailPut();
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->usersSendAlertMailPut: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::DefaultApi;

my $api_instance = WWW::SwaggerClient::DefaultApi->new();

eval { 
    $api_instance->usersSendAlertMailPut();
};
if ($@) {
    warn "Exception when calling DefaultApi->usersSendAlertMailPut: $@\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.DefaultApi()

try: 
    api_instance.users_send_alert_mail_put()
except ApiException as e:
    print("Exception when calling DefaultApi->usersSendAlertMailPut: %s\n" % e)

Parameters

Responses

Status: default -


DistributionChain

distributionChainPost

Endpoint to create a distribution chain distributor/seller


/distributionChain/

Usage and SDK Samples

curl -X POST\
\
-H "Content-Type: application/json"\
"http://localhost:3004//distributionChain/?skip=&limit=&sort=&q="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DistributionChainApi;

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

public class DistributionChainApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();

        // Configure OAuth2 access token for authorization: application
        OAuth application = (OAuth) defaultClient.getAuthentication("application");
        application.setAccessToken("YOUR ACCESS TOKEN");

        DistributionChainApi apiInstance = new DistributionChainApi();
        String xAuthenticationStrategy = xAuthenticationStrategy_example; // String | 
        DistributionChain_body_1 body = ; // DistributionChain_body_1 | 
        String skip = skip_example; // String | 
        String limit = limit_example; // String | 
        String sort = sort_example; // String | 
        String q = q_example; // String | 
        try {
            apiInstance.distributionChainPost(xAuthenticationStrategy, body, skip, limit, sort, q);
        } catch (ApiException e) {
            System.err.println("Exception when calling DistributionChainApi#distributionChainPost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.DistributionChainApi;

public class DistributionChainApiExample {

    public static void main(String[] args) {
        DistributionChainApi apiInstance = new DistributionChainApi();
        String xAuthenticationStrategy = xAuthenticationStrategy_example; // String | 
        DistributionChain_body_1 body = ; // DistributionChain_body_1 | 
        String skip = skip_example; // String | 
        String limit = limit_example; // String | 
        String sort = sort_example; // String | 
        String q = q_example; // String | 
        try {
            apiInstance.distributionChainPost(xAuthenticationStrategy, body, skip, limit, sort, q);
        } catch (ApiException e) {
            System.err.println("Exception when calling DistributionChainApi#distributionChainPost");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
// Configure OAuth2 access token for authorization: (authentication scheme: application)
[apiConfig setAccessToken:@"YOUR_ACCESS_TOKEN"];
String *xAuthenticationStrategy = xAuthenticationStrategy_example; // 
DistributionChain_body_1 *body = ; //  (optional)
String *skip = skip_example; //  (optional)
String *limit = limit_example; //  (optional)
String *sort = sort_example; //  (optional)
String *q = q_example; //  (optional)

DistributionChainApi *apiInstance = [[DistributionChainApi alloc] init];

[apiInstance distributionChainPostWith:xAuthenticationStrategy
    body:body
    skip:skip
    limit:limit
    sort:sort
    q:q
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var 1TrueId30MakerCustomer = require('1_true_id_30_maker_customer');
var defaultClient = 1TrueId30MakerCustomer.ApiClient.instance;

// Configure OAuth2 access token for authorization: application
var application = defaultClient.authentications['application'];
application.accessToken = "YOUR ACCESS TOKEN"

var api = new 1TrueId30MakerCustomer.DistributionChainApi()
var xAuthenticationStrategy = xAuthenticationStrategy_example; // {{String}} 
var opts = { 
  'body':  // {{DistributionChain_body_1}} 
  'skip': skip_example // {{String}} 
  'limit': limit_example // {{String}} 
  'sort': sort_example // {{String}} 
  'q': q_example // {{String}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.distributionChainPost(xAuthenticationStrategy, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            // Configure OAuth2 access token for authorization: application
            Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";

            var apiInstance = new DistributionChainApi();
            var xAuthenticationStrategy = xAuthenticationStrategy_example;  // String | 
            var body = new DistributionChain_body_1(); // DistributionChain_body_1 |  (optional) 
            var skip = skip_example;  // String |  (optional) 
            var limit = limit_example;  // String |  (optional) 
            var sort = sort_example;  // String |  (optional) 
            var q = q_example;  // String |  (optional) 

            try
            {
                apiInstance.distributionChainPost(xAuthenticationStrategy, body, skip, limit, sort, q);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling DistributionChainApi.distributionChainPost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Configure OAuth2 access token for authorization: application
Swagger\Client\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');

$api_instance = new Swagger\Client\ApiDistributionChainApi();
$xAuthenticationStrategy = xAuthenticationStrategy_example; // String | 
$body = ; // DistributionChain_body_1 | 
$skip = skip_example; // String | 
$limit = limit_example; // String | 
$sort = sort_example; // String | 
$q = q_example; // String | 

try {
    $api_instance->distributionChainPost($xAuthenticationStrategy, $body, $skip, $limit, $sort, $q);
} catch (Exception $e) {
    echo 'Exception when calling DistributionChainApi->distributionChainPost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::DistributionChainApi;

# Configure OAuth2 access token for authorization: application
$WWW::SwaggerClient::Configuration::access_token = 'YOUR_ACCESS_TOKEN';

my $api_instance = WWW::SwaggerClient::DistributionChainApi->new();
my $xAuthenticationStrategy = xAuthenticationStrategy_example; # String | 
my $body = WWW::SwaggerClient::Object::DistributionChain_body_1->new(); # DistributionChain_body_1 | 
my $skip = skip_example; # String | 
my $limit = limit_example; # String | 
my $sort = sort_example; # String | 
my $q = q_example; # String | 

eval { 
    $api_instance->distributionChainPost(xAuthenticationStrategy => $xAuthenticationStrategy, body => $body, skip => $skip, limit => $limit, sort => $sort, q => $q);
};
if ($@) {
    warn "Exception when calling DistributionChainApi->distributionChainPost: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint

# Configure OAuth2 access token for authorization: application
swagger_client.configuration.access_token = 'YOUR_ACCESS_TOKEN'

# create an instance of the API class
api_instance = swagger_client.DistributionChainApi()
xAuthenticationStrategy = xAuthenticationStrategy_example # String | 
body =  # DistributionChain_body_1 |  (optional)
skip = skip_example # String |  (optional)
limit = limit_example # String |  (optional)
sort = sort_example # String |  (optional)
q = q_example # String |  (optional)

try: 
    api_instance.distribution_chain_post(xAuthenticationStrategy, body=body, skip=skip, limit=limit, sort=sort, q=q)
except ApiException as e:
    print("Exception when calling DistributionChainApi->distributionChainPost: %s\n" % e)

Parameters

Header parameters
Name Description
X-Authentication-Strategy*
String
Required
Body parameters
Name Description
body
Query parameters
Name Description
skip
String
limit
String
sort
String
q
String

Responses

Status: 200 - OK


distributionChainPut

Endpoint to update a distribution chain


/distributionChain/

Usage and SDK Samples

curl -X PUT\
\
-H "Content-Type: application/json"\
"http://localhost:3004//distributionChain/"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DistributionChainApi;

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

public class DistributionChainApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();

        // Configure OAuth2 access token for authorization: application
        OAuth application = (OAuth) defaultClient.getAuthentication("application");
        application.setAccessToken("YOUR ACCESS TOKEN");

        DistributionChainApi apiInstance = new DistributionChainApi();
        String xAuthenticationStrategy = xAuthenticationStrategy_example; // String | 
        DistributionChain_body body = ; // DistributionChain_body | 
        try {
            apiInstance.distributionChainPut(xAuthenticationStrategy, body);
        } catch (ApiException e) {
            System.err.println("Exception when calling DistributionChainApi#distributionChainPut");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.DistributionChainApi;

public class DistributionChainApiExample {

    public static void main(String[] args) {
        DistributionChainApi apiInstance = new DistributionChainApi();
        String xAuthenticationStrategy = xAuthenticationStrategy_example; // String | 
        DistributionChain_body body = ; // DistributionChain_body | 
        try {
            apiInstance.distributionChainPut(xAuthenticationStrategy, body);
        } catch (ApiException e) {
            System.err.println("Exception when calling DistributionChainApi#distributionChainPut");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
// Configure OAuth2 access token for authorization: (authentication scheme: application)
[apiConfig setAccessToken:@"YOUR_ACCESS_TOKEN"];
String *xAuthenticationStrategy = xAuthenticationStrategy_example; // 
DistributionChain_body *body = ; //  (optional)

DistributionChainApi *apiInstance = [[DistributionChainApi alloc] init];

[apiInstance distributionChainPutWith:xAuthenticationStrategy
    body:body
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var 1TrueId30MakerCustomer = require('1_true_id_30_maker_customer');
var defaultClient = 1TrueId30MakerCustomer.ApiClient.instance;

// Configure OAuth2 access token for authorization: application
var application = defaultClient.authentications['application'];
application.accessToken = "YOUR ACCESS TOKEN"

var api = new 1TrueId30MakerCustomer.DistributionChainApi()
var xAuthenticationStrategy = xAuthenticationStrategy_example; // {{String}} 
var opts = { 
  'body':  // {{DistributionChain_body}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.distributionChainPut(xAuthenticationStrategy, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            // Configure OAuth2 access token for authorization: application
            Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";

            var apiInstance = new DistributionChainApi();
            var xAuthenticationStrategy = xAuthenticationStrategy_example;  // String | 
            var body = new DistributionChain_body(); // DistributionChain_body |  (optional) 

            try
            {
                apiInstance.distributionChainPut(xAuthenticationStrategy, body);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling DistributionChainApi.distributionChainPut: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Configure OAuth2 access token for authorization: application
Swagger\Client\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');

$api_instance = new Swagger\Client\ApiDistributionChainApi();
$xAuthenticationStrategy = xAuthenticationStrategy_example; // String | 
$body = ; // DistributionChain_body | 

try {
    $api_instance->distributionChainPut($xAuthenticationStrategy, $body);
} catch (Exception $e) {
    echo 'Exception when calling DistributionChainApi->distributionChainPut: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::DistributionChainApi;

# Configure OAuth2 access token for authorization: application
$WWW::SwaggerClient::Configuration::access_token = 'YOUR_ACCESS_TOKEN';

my $api_instance = WWW::SwaggerClient::DistributionChainApi->new();
my $xAuthenticationStrategy = xAuthenticationStrategy_example; # String | 
my $body = WWW::SwaggerClient::Object::DistributionChain_body->new(); # DistributionChain_body | 

eval { 
    $api_instance->distributionChainPut(xAuthenticationStrategy => $xAuthenticationStrategy, body => $body);
};
if ($@) {
    warn "Exception when calling DistributionChainApi->distributionChainPut: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint

# Configure OAuth2 access token for authorization: application
swagger_client.configuration.access_token = 'YOUR_ACCESS_TOKEN'

# create an instance of the API class
api_instance = swagger_client.DistributionChainApi()
xAuthenticationStrategy = xAuthenticationStrategy_example # String | 
body =  # DistributionChain_body |  (optional)

try: 
    api_instance.distribution_chain_put(xAuthenticationStrategy, body=body)
except ApiException as e:
    print("Exception when calling DistributionChainApi->distributionChainPut: %s\n" % e)

Parameters

Header parameters
Name Description
X-Authentication-Strategy*
String
Required
Body parameters
Name Description
body

Responses

Status: 200 - OK


Normative

normaGetProductInfoByIdProfileGet


/norma/getProductInfoByIdProfile

Usage and SDK Samples

curl -X GET\
\
"http://localhost:3004//norma/getProductInfoByIdProfile?product_uid=&id_profile=&lingua="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.NormativeApi;

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

public class NormativeApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();

        // Configure OAuth2 access token for authorization: application
        OAuth application = (OAuth) defaultClient.getAuthentication("application");
        application.setAccessToken("YOUR ACCESS TOKEN");

        NormativeApi apiInstance = new NormativeApi();
        String productUid = productUid_example; // String | 
        String idProfile = idProfile_example; // String | 
        String lingua = lingua_example; // String | 
        try {
            apiInstance.normaGetProductInfoByIdProfileGet(productUid, idProfile, lingua);
        } catch (ApiException e) {
            System.err.println("Exception when calling NormativeApi#normaGetProductInfoByIdProfileGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.NormativeApi;

public class NormativeApiExample {

    public static void main(String[] args) {
        NormativeApi apiInstance = new NormativeApi();
        String productUid = productUid_example; // String | 
        String idProfile = idProfile_example; // String | 
        String lingua = lingua_example; // String | 
        try {
            apiInstance.normaGetProductInfoByIdProfileGet(productUid, idProfile, lingua);
        } catch (ApiException e) {
            System.err.println("Exception when calling NormativeApi#normaGetProductInfoByIdProfileGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
// Configure OAuth2 access token for authorization: (authentication scheme: application)
[apiConfig setAccessToken:@"YOUR_ACCESS_TOKEN"];
String *productUid = productUid_example; //  (optional)
String *idProfile = idProfile_example; //  (optional)
String *lingua = lingua_example; //  (optional)

NormativeApi *apiInstance = [[NormativeApi alloc] init];

[apiInstance normaGetProductInfoByIdProfileGetWith:productUid
    idProfile:idProfile
    lingua:lingua
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var 1TrueId30MakerCustomer = require('1_true_id_30_maker_customer');
var defaultClient = 1TrueId30MakerCustomer.ApiClient.instance;

// Configure OAuth2 access token for authorization: application
var application = defaultClient.authentications['application'];
application.accessToken = "YOUR ACCESS TOKEN"

var api = new 1TrueId30MakerCustomer.NormativeApi()
var opts = { 
  'productUid': productUid_example, // {{String}} 
  'idProfile': idProfile_example, // {{String}} 
  'lingua': lingua_example // {{String}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.normaGetProductInfoByIdProfileGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            // Configure OAuth2 access token for authorization: application
            Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";

            var apiInstance = new NormativeApi();
            var productUid = productUid_example;  // String |  (optional) 
            var idProfile = idProfile_example;  // String |  (optional) 
            var lingua = lingua_example;  // String |  (optional) 

            try
            {
                apiInstance.normaGetProductInfoByIdProfileGet(productUid, idProfile, lingua);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling NormativeApi.normaGetProductInfoByIdProfileGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Configure OAuth2 access token for authorization: application
Swagger\Client\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');

$api_instance = new Swagger\Client\ApiNormativeApi();
$productUid = productUid_example; // String | 
$idProfile = idProfile_example; // String | 
$lingua = lingua_example; // String | 

try {
    $api_instance->normaGetProductInfoByIdProfileGet($productUid, $idProfile, $lingua);
} catch (Exception $e) {
    echo 'Exception when calling NormativeApi->normaGetProductInfoByIdProfileGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::NormativeApi;

# Configure OAuth2 access token for authorization: application
$WWW::SwaggerClient::Configuration::access_token = 'YOUR_ACCESS_TOKEN';

my $api_instance = WWW::SwaggerClient::NormativeApi->new();
my $productUid = productUid_example; # String | 
my $idProfile = idProfile_example; # String | 
my $lingua = lingua_example; # String | 

eval { 
    $api_instance->normaGetProductInfoByIdProfileGet(productUid => $productUid, idProfile => $idProfile, lingua => $lingua);
};
if ($@) {
    warn "Exception when calling NormativeApi->normaGetProductInfoByIdProfileGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint

# Configure OAuth2 access token for authorization: application
swagger_client.configuration.access_token = 'YOUR_ACCESS_TOKEN'

# create an instance of the API class
api_instance = swagger_client.NormativeApi()
productUid = productUid_example # String |  (optional)
idProfile = idProfile_example # String |  (optional)
lingua = lingua_example # String |  (optional)

try: 
    api_instance.norma_get_product_info_by_id_profile_get(productUid=productUid, idProfile=idProfile, lingua=lingua)
except ApiException as e:
    print("Exception when calling NormativeApi->normaGetProductInfoByIdProfileGet: %s\n" % e)

Parameters

Query parameters
Name Description
product_uid
String
id_profile
String
lingua
String

Responses

Status: 200 - OK


normaGetProductInfoGet


/norma/getProductInfo

Usage and SDK Samples

curl -X GET\
\
"http://localhost:3004//norma/getProductInfo?product_uid=&id_profile=&lingua="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.NormativeApi;

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

public class NormativeApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();

        // Configure OAuth2 access token for authorization: application
        OAuth application = (OAuth) defaultClient.getAuthentication("application");
        application.setAccessToken("YOUR ACCESS TOKEN");

        NormativeApi apiInstance = new NormativeApi();
        String productUid = productUid_example; // String | 
        String idProfile = idProfile_example; // String | 
        String lingua = lingua_example; // String | 
        try {
            apiInstance.normaGetProductInfoGet(productUid, idProfile, lingua);
        } catch (ApiException e) {
            System.err.println("Exception when calling NormativeApi#normaGetProductInfoGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.NormativeApi;

public class NormativeApiExample {

    public static void main(String[] args) {
        NormativeApi apiInstance = new NormativeApi();
        String productUid = productUid_example; // String | 
        String idProfile = idProfile_example; // String | 
        String lingua = lingua_example; // String | 
        try {
            apiInstance.normaGetProductInfoGet(productUid, idProfile, lingua);
        } catch (ApiException e) {
            System.err.println("Exception when calling NormativeApi#normaGetProductInfoGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
// Configure OAuth2 access token for authorization: (authentication scheme: application)
[apiConfig setAccessToken:@"YOUR_ACCESS_TOKEN"];
String *productUid = productUid_example; //  (optional)
String *idProfile = idProfile_example; //  (optional)
String *lingua = lingua_example; //  (optional)

NormativeApi *apiInstance = [[NormativeApi alloc] init];

[apiInstance normaGetProductInfoGetWith:productUid
    idProfile:idProfile
    lingua:lingua
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var 1TrueId30MakerCustomer = require('1_true_id_30_maker_customer');
var defaultClient = 1TrueId30MakerCustomer.ApiClient.instance;

// Configure OAuth2 access token for authorization: application
var application = defaultClient.authentications['application'];
application.accessToken = "YOUR ACCESS TOKEN"

var api = new 1TrueId30MakerCustomer.NormativeApi()
var opts = { 
  'productUid': productUid_example, // {{String}} 
  'idProfile': idProfile_example, // {{String}} 
  'lingua': lingua_example // {{String}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.normaGetProductInfoGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            // Configure OAuth2 access token for authorization: application
            Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";

            var apiInstance = new NormativeApi();
            var productUid = productUid_example;  // String |  (optional) 
            var idProfile = idProfile_example;  // String |  (optional) 
            var lingua = lingua_example;  // String |  (optional) 

            try
            {
                apiInstance.normaGetProductInfoGet(productUid, idProfile, lingua);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling NormativeApi.normaGetProductInfoGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Configure OAuth2 access token for authorization: application
Swagger\Client\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');

$api_instance = new Swagger\Client\ApiNormativeApi();
$productUid = productUid_example; // String | 
$idProfile = idProfile_example; // String | 
$lingua = lingua_example; // String | 

try {
    $api_instance->normaGetProductInfoGet($productUid, $idProfile, $lingua);
} catch (Exception $e) {
    echo 'Exception when calling NormativeApi->normaGetProductInfoGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::NormativeApi;

# Configure OAuth2 access token for authorization: application
$WWW::SwaggerClient::Configuration::access_token = 'YOUR_ACCESS_TOKEN';

my $api_instance = WWW::SwaggerClient::NormativeApi->new();
my $productUid = productUid_example; # String | 
my $idProfile = idProfile_example; # String | 
my $lingua = lingua_example; # String | 

eval { 
    $api_instance->normaGetProductInfoGet(productUid => $productUid, idProfile => $idProfile, lingua => $lingua);
};
if ($@) {
    warn "Exception when calling NormativeApi->normaGetProductInfoGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint

# Configure OAuth2 access token for authorization: application
swagger_client.configuration.access_token = 'YOUR_ACCESS_TOKEN'

# create an instance of the API class
api_instance = swagger_client.NormativeApi()
productUid = productUid_example # String |  (optional)
idProfile = idProfile_example # String |  (optional)
lingua = lingua_example # String |  (optional)

try: 
    api_instance.norma_get_product_info_get(productUid=productUid, idProfile=idProfile, lingua=lingua)
except ApiException as e:
    print("Exception when calling NormativeApi->normaGetProductInfoGet: %s\n" % e)

Parameters

Query parameters
Name Description
product_uid
String
id_profile
String
lingua
String

Responses

Status: 200 - OK


Oauth

oauthCustomAutoLoginPost


/oauth/customAutoLogin

Usage and SDK Samples

curl -X POST\
-H "Content-Type: application/json"\
"http://localhost:3004//oauth/customAutoLogin"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.OauthApi;

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

public class OauthApiExample {

    public static void main(String[] args) {
        
        OauthApi apiInstance = new OauthApi();
        Oauth_customAutoLogin_body body = ; // Oauth_customAutoLogin_body | 
        try {
            apiInstance.oauthCustomAutoLoginPost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling OauthApi#oauthCustomAutoLoginPost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.OauthApi;

public class OauthApiExample {

    public static void main(String[] args) {
        OauthApi apiInstance = new OauthApi();
        Oauth_customAutoLogin_body body = ; // Oauth_customAutoLogin_body | 
        try {
            apiInstance.oauthCustomAutoLoginPost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling OauthApi#oauthCustomAutoLoginPost");
            e.printStackTrace();
        }
    }
}
Oauth_customAutoLogin_body *body = ; //  (optional)

OauthApi *apiInstance = [[OauthApi alloc] init];

[apiInstance oauthCustomAutoLoginPostWith:body
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var 1TrueId30MakerCustomer = require('1_true_id_30_maker_customer');

var api = new 1TrueId30MakerCustomer.OauthApi()
var opts = { 
  'body':  // {{Oauth_customAutoLogin_body}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.oauthCustomAutoLoginPost(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new OauthApi();
            var body = new Oauth_customAutoLogin_body(); // Oauth_customAutoLogin_body |  (optional) 

            try
            {
                apiInstance.oauthCustomAutoLoginPost(body);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling OauthApi.oauthCustomAutoLoginPost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiOauthApi();
$body = ; // Oauth_customAutoLogin_body | 

try {
    $api_instance->oauthCustomAutoLoginPost($body);
} catch (Exception $e) {
    echo 'Exception when calling OauthApi->oauthCustomAutoLoginPost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::OauthApi;

my $api_instance = WWW::SwaggerClient::OauthApi->new();
my $body = WWW::SwaggerClient::Object::Oauth_customAutoLogin_body->new(); # Oauth_customAutoLogin_body | 

eval { 
    $api_instance->oauthCustomAutoLoginPost(body => $body);
};
if ($@) {
    warn "Exception when calling OauthApi->oauthCustomAutoLoginPost: $@\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.OauthApi()
body =  # Oauth_customAutoLogin_body |  (optional)

try: 
    api_instance.oauth_custom_auto_login_post(body=body)
except ApiException as e:
    print("Exception when calling OauthApi->oauthCustomAutoLoginPost: %s\n" % e)

Parameters

Body parameters
Name Description
body

Responses

Status: 401 - Unauthorized


oauthDeleteDelete

return wallet info


/oauth/delete

Usage and SDK Samples

curl -X DELETE\
\
-H "Content-Type: application/json"\
"http://localhost:3004//oauth/delete"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.OauthApi;

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

public class OauthApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();

        // Configure OAuth2 access token for authorization: application
        OAuth application = (OAuth) defaultClient.getAuthentication("application");
        application.setAccessToken("YOUR ACCESS TOKEN");

        OauthApi apiInstance = new OauthApi();
        Oauth_delete_body body = ; // Oauth_delete_body | 
        try {
            apiInstance.oauthDeleteDelete(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling OauthApi#oauthDeleteDelete");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.OauthApi;

public class OauthApiExample {

    public static void main(String[] args) {
        OauthApi apiInstance = new OauthApi();
        Oauth_delete_body body = ; // Oauth_delete_body | 
        try {
            apiInstance.oauthDeleteDelete(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling OauthApi#oauthDeleteDelete");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
// Configure OAuth2 access token for authorization: (authentication scheme: application)
[apiConfig setAccessToken:@"YOUR_ACCESS_TOKEN"];
Oauth_delete_body *body = ; //  (optional)

OauthApi *apiInstance = [[OauthApi alloc] init];

// return wallet info
[apiInstance oauthDeleteDeleteWith:body
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var 1TrueId30MakerCustomer = require('1_true_id_30_maker_customer');
var defaultClient = 1TrueId30MakerCustomer.ApiClient.instance;

// Configure OAuth2 access token for authorization: application
var application = defaultClient.authentications['application'];
application.accessToken = "YOUR ACCESS TOKEN"

var api = new 1TrueId30MakerCustomer.OauthApi()
var opts = { 
  'body':  // {{Oauth_delete_body}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.oauthDeleteDelete(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            // Configure OAuth2 access token for authorization: application
            Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";

            var apiInstance = new OauthApi();
            var body = new Oauth_delete_body(); // Oauth_delete_body |  (optional) 

            try
            {
                // return wallet info
                apiInstance.oauthDeleteDelete(body);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling OauthApi.oauthDeleteDelete: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Configure OAuth2 access token for authorization: application
Swagger\Client\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');

$api_instance = new Swagger\Client\ApiOauthApi();
$body = ; // Oauth_delete_body | 

try {
    $api_instance->oauthDeleteDelete($body);
} catch (Exception $e) {
    echo 'Exception when calling OauthApi->oauthDeleteDelete: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::OauthApi;

# Configure OAuth2 access token for authorization: application
$WWW::SwaggerClient::Configuration::access_token = 'YOUR_ACCESS_TOKEN';

my $api_instance = WWW::SwaggerClient::OauthApi->new();
my $body = WWW::SwaggerClient::Object::Oauth_delete_body->new(); # Oauth_delete_body | 

eval { 
    $api_instance->oauthDeleteDelete(body => $body);
};
if ($@) {
    warn "Exception when calling OauthApi->oauthDeleteDelete: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint

# Configure OAuth2 access token for authorization: application
swagger_client.configuration.access_token = 'YOUR_ACCESS_TOKEN'

# create an instance of the API class
api_instance = swagger_client.OauthApi()
body =  # Oauth_delete_body |  (optional)

try: 
    # return wallet info
    api_instance.oauth_delete_delete(body=body)
except ApiException as e:
    print("Exception when calling OauthApi->oauthDeleteDelete: %s\n" % e)

Parameters

Body parameters
Name Description
body

Responses

Status: 200 - OK

Status: 201 - Created


oauthTokenPost


/oauth/token

Usage and SDK Samples

curl -X POST\
"http://localhost:3004//oauth/token"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.OauthApi;

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

public class OauthApiExample {

    public static void main(String[] args) {
        
        OauthApi apiInstance = new OauthApi();
        try {
            apiInstance.oauthTokenPost();
        } catch (ApiException e) {
            System.err.println("Exception when calling OauthApi#oauthTokenPost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.OauthApi;

public class OauthApiExample {

    public static void main(String[] args) {
        OauthApi apiInstance = new OauthApi();
        try {
            apiInstance.oauthTokenPost();
        } catch (ApiException e) {
            System.err.println("Exception when calling OauthApi#oauthTokenPost");
            e.printStackTrace();
        }
    }
}

OauthApi *apiInstance = [[OauthApi alloc] init];

[apiInstance oauthTokenPostWithCompletionHandler: 
              ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var 1TrueId30MakerCustomer = require('1_true_id_30_maker_customer');

var api = new 1TrueId30MakerCustomer.OauthApi()
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.oauthTokenPost(callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new OauthApi();

            try
            {
                apiInstance.oauthTokenPost();
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling OauthApi.oauthTokenPost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiOauthApi();

try {
    $api_instance->oauthTokenPost();
} catch (Exception $e) {
    echo 'Exception when calling OauthApi->oauthTokenPost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::OauthApi;

my $api_instance = WWW::SwaggerClient::OauthApi->new();

eval { 
    $api_instance->oauthTokenPost();
};
if ($@) {
    warn "Exception when calling OauthApi->oauthTokenPost: $@\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.OauthApi()

try: 
    api_instance.oauth_token_post()
except ApiException as e:
    print("Exception when calling OauthApi->oauthTokenPost: %s\n" % e)

Parameters

Responses

Status: default -


oauthUpdateIdPadrePut

return wallet info


/oauth/updateIdPadre

Usage and SDK Samples

curl -X PUT\
\
-H "Content-Type: application/json"\
"http://localhost:3004//oauth/updateIdPadre"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.OauthApi;

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

public class OauthApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();

        // Configure OAuth2 access token for authorization: application
        OAuth application = (OAuth) defaultClient.getAuthentication("application");
        application.setAccessToken("YOUR ACCESS TOKEN");

        OauthApi apiInstance = new OauthApi();
        Oauth_updateIdPadre_body body = ; // Oauth_updateIdPadre_body | 
        try {
            apiInstance.oauthUpdateIdPadrePut(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling OauthApi#oauthUpdateIdPadrePut");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.OauthApi;

public class OauthApiExample {

    public static void main(String[] args) {
        OauthApi apiInstance = new OauthApi();
        Oauth_updateIdPadre_body body = ; // Oauth_updateIdPadre_body | 
        try {
            apiInstance.oauthUpdateIdPadrePut(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling OauthApi#oauthUpdateIdPadrePut");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
// Configure OAuth2 access token for authorization: (authentication scheme: application)
[apiConfig setAccessToken:@"YOUR_ACCESS_TOKEN"];
Oauth_updateIdPadre_body *body = ; //  (optional)

OauthApi *apiInstance = [[OauthApi alloc] init];

// return wallet info
[apiInstance oauthUpdateIdPadrePutWith:body
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var 1TrueId30MakerCustomer = require('1_true_id_30_maker_customer');
var defaultClient = 1TrueId30MakerCustomer.ApiClient.instance;

// Configure OAuth2 access token for authorization: application
var application = defaultClient.authentications['application'];
application.accessToken = "YOUR ACCESS TOKEN"

var api = new 1TrueId30MakerCustomer.OauthApi()
var opts = { 
  'body':  // {{Oauth_updateIdPadre_body}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.oauthUpdateIdPadrePut(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            // Configure OAuth2 access token for authorization: application
            Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";

            var apiInstance = new OauthApi();
            var body = new Oauth_updateIdPadre_body(); // Oauth_updateIdPadre_body |  (optional) 

            try
            {
                // return wallet info
                apiInstance.oauthUpdateIdPadrePut(body);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling OauthApi.oauthUpdateIdPadrePut: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Configure OAuth2 access token for authorization: application
Swagger\Client\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');

$api_instance = new Swagger\Client\ApiOauthApi();
$body = ; // Oauth_updateIdPadre_body | 

try {
    $api_instance->oauthUpdateIdPadrePut($body);
} catch (Exception $e) {
    echo 'Exception when calling OauthApi->oauthUpdateIdPadrePut: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::OauthApi;

# Configure OAuth2 access token for authorization: application
$WWW::SwaggerClient::Configuration::access_token = 'YOUR_ACCESS_TOKEN';

my $api_instance = WWW::SwaggerClient::OauthApi->new();
my $body = WWW::SwaggerClient::Object::Oauth_updateIdPadre_body->new(); # Oauth_updateIdPadre_body | 

eval { 
    $api_instance->oauthUpdateIdPadrePut(body => $body);
};
if ($@) {
    warn "Exception when calling OauthApi->oauthUpdateIdPadrePut: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint

# Configure OAuth2 access token for authorization: application
swagger_client.configuration.access_token = 'YOUR_ACCESS_TOKEN'

# create an instance of the API class
api_instance = swagger_client.OauthApi()
body =  # Oauth_updateIdPadre_body |  (optional)

try: 
    # return wallet info
    api_instance.oauth_update_id_padre_put(body=body)
except ApiException as e:
    print("Exception when calling OauthApi->oauthUpdateIdPadrePut: %s\n" % e)

Parameters

Body parameters
Name Description
body

Responses

Status: 200 - OK

Status: 201 - Created


usersChangePasswordPut

Endpoint to update a user account


/users/changePassword

Usage and SDK Samples

curl -X PUT\
\
-H "Content-Type: application/json"\
"http://localhost:3004//users/changePassword"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.OauthApi;

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

public class OauthApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();

        // Configure OAuth2 access token for authorization: application
        OAuth application = (OAuth) defaultClient.getAuthentication("application");
        application.setAccessToken("YOUR ACCESS TOKEN");

        OauthApi apiInstance = new OauthApi();
        String xAuthenticationStrategy = xAuthenticationStrategy_example; // String | 
        Users_changePassword_body body = ; // Users_changePassword_body | 
        try {
            apiInstance.usersChangePasswordPut(xAuthenticationStrategy, body);
        } catch (ApiException e) {
            System.err.println("Exception when calling OauthApi#usersChangePasswordPut");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.OauthApi;

public class OauthApiExample {

    public static void main(String[] args) {
        OauthApi apiInstance = new OauthApi();
        String xAuthenticationStrategy = xAuthenticationStrategy_example; // String | 
        Users_changePassword_body body = ; // Users_changePassword_body | 
        try {
            apiInstance.usersChangePasswordPut(xAuthenticationStrategy, body);
        } catch (ApiException e) {
            System.err.println("Exception when calling OauthApi#usersChangePasswordPut");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
// Configure OAuth2 access token for authorization: (authentication scheme: application)
[apiConfig setAccessToken:@"YOUR_ACCESS_TOKEN"];
String *xAuthenticationStrategy = xAuthenticationStrategy_example; // 
Users_changePassword_body *body = ; //  (optional)

OauthApi *apiInstance = [[OauthApi alloc] init];

[apiInstance usersChangePasswordPutWith:xAuthenticationStrategy
    body:body
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var 1TrueId30MakerCustomer = require('1_true_id_30_maker_customer');
var defaultClient = 1TrueId30MakerCustomer.ApiClient.instance;

// Configure OAuth2 access token for authorization: application
var application = defaultClient.authentications['application'];
application.accessToken = "YOUR ACCESS TOKEN"

var api = new 1TrueId30MakerCustomer.OauthApi()
var xAuthenticationStrategy = xAuthenticationStrategy_example; // {{String}} 
var opts = { 
  'body':  // {{Users_changePassword_body}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.usersChangePasswordPut(xAuthenticationStrategy, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            // Configure OAuth2 access token for authorization: application
            Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";

            var apiInstance = new OauthApi();
            var xAuthenticationStrategy = xAuthenticationStrategy_example;  // String | 
            var body = new Users_changePassword_body(); // Users_changePassword_body |  (optional) 

            try
            {
                apiInstance.usersChangePasswordPut(xAuthenticationStrategy, body);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling OauthApi.usersChangePasswordPut: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Configure OAuth2 access token for authorization: application
Swagger\Client\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');

$api_instance = new Swagger\Client\ApiOauthApi();
$xAuthenticationStrategy = xAuthenticationStrategy_example; // String | 
$body = ; // Users_changePassword_body | 

try {
    $api_instance->usersChangePasswordPut($xAuthenticationStrategy, $body);
} catch (Exception $e) {
    echo 'Exception when calling OauthApi->usersChangePasswordPut: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::OauthApi;

# Configure OAuth2 access token for authorization: application
$WWW::SwaggerClient::Configuration::access_token = 'YOUR_ACCESS_TOKEN';

my $api_instance = WWW::SwaggerClient::OauthApi->new();
my $xAuthenticationStrategy = xAuthenticationStrategy_example; # String | 
my $body = WWW::SwaggerClient::Object::Users_changePassword_body->new(); # Users_changePassword_body | 

eval { 
    $api_instance->usersChangePasswordPut(xAuthenticationStrategy => $xAuthenticationStrategy, body => $body);
};
if ($@) {
    warn "Exception when calling OauthApi->usersChangePasswordPut: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint

# Configure OAuth2 access token for authorization: application
swagger_client.configuration.access_token = 'YOUR_ACCESS_TOKEN'

# create an instance of the API class
api_instance = swagger_client.OauthApi()
xAuthenticationStrategy = xAuthenticationStrategy_example # String | 
body =  # Users_changePassword_body |  (optional)

try: 
    api_instance.users_change_password_put(xAuthenticationStrategy, body=body)
except ApiException as e:
    print("Exception when calling OauthApi->usersChangePasswordPut: %s\n" % e)

Parameters

Header parameters
Name Description
X-Authentication-Strategy*
String
Required
Body parameters
Name Description
body

Responses

Status: 200 - OK


usersPut

Endpoint to update a user account


/users/

Usage and SDK Samples

curl -X PUT\
\
-H "Content-Type: application/json"\
"http://localhost:3004//users/"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.OauthApi;

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

public class OauthApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();

        // Configure OAuth2 access token for authorization: application
        OAuth application = (OAuth) defaultClient.getAuthentication("application");
        application.setAccessToken("YOUR ACCESS TOKEN");

        OauthApi apiInstance = new OauthApi();
        String xAuthenticationStrategy = xAuthenticationStrategy_example; // String | 
        Users_body body = ; // Users_body | 
        try {
            apiInstance.usersPut(xAuthenticationStrategy, body);
        } catch (ApiException e) {
            System.err.println("Exception when calling OauthApi#usersPut");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.OauthApi;

public class OauthApiExample {

    public static void main(String[] args) {
        OauthApi apiInstance = new OauthApi();
        String xAuthenticationStrategy = xAuthenticationStrategy_example; // String | 
        Users_body body = ; // Users_body | 
        try {
            apiInstance.usersPut(xAuthenticationStrategy, body);
        } catch (ApiException e) {
            System.err.println("Exception when calling OauthApi#usersPut");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
// Configure OAuth2 access token for authorization: (authentication scheme: application)
[apiConfig setAccessToken:@"YOUR_ACCESS_TOKEN"];
String *xAuthenticationStrategy = xAuthenticationStrategy_example; // 
Users_body *body = ; //  (optional)

OauthApi *apiInstance = [[OauthApi alloc] init];

[apiInstance usersPutWith:xAuthenticationStrategy
    body:body
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var 1TrueId30MakerCustomer = require('1_true_id_30_maker_customer');
var defaultClient = 1TrueId30MakerCustomer.ApiClient.instance;

// Configure OAuth2 access token for authorization: application
var application = defaultClient.authentications['application'];
application.accessToken = "YOUR ACCESS TOKEN"

var api = new 1TrueId30MakerCustomer.OauthApi()
var xAuthenticationStrategy = xAuthenticationStrategy_example; // {{String}} 
var opts = { 
  'body':  // {{Users_body}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.usersPut(xAuthenticationStrategy, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            // Configure OAuth2 access token for authorization: application
            Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";

            var apiInstance = new OauthApi();
            var xAuthenticationStrategy = xAuthenticationStrategy_example;  // String | 
            var body = new Users_body(); // Users_body |  (optional) 

            try
            {
                apiInstance.usersPut(xAuthenticationStrategy, body);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling OauthApi.usersPut: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Configure OAuth2 access token for authorization: application
Swagger\Client\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');

$api_instance = new Swagger\Client\ApiOauthApi();
$xAuthenticationStrategy = xAuthenticationStrategy_example; // String | 
$body = ; // Users_body | 

try {
    $api_instance->usersPut($xAuthenticationStrategy, $body);
} catch (Exception $e) {
    echo 'Exception when calling OauthApi->usersPut: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::OauthApi;

# Configure OAuth2 access token for authorization: application
$WWW::SwaggerClient::Configuration::access_token = 'YOUR_ACCESS_TOKEN';

my $api_instance = WWW::SwaggerClient::OauthApi->new();
my $xAuthenticationStrategy = xAuthenticationStrategy_example; # String | 
my $body = WWW::SwaggerClient::Object::Users_body->new(); # Users_body | 

eval { 
    $api_instance->usersPut(xAuthenticationStrategy => $xAuthenticationStrategy, body => $body);
};
if ($@) {
    warn "Exception when calling OauthApi->usersPut: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint

# Configure OAuth2 access token for authorization: application
swagger_client.configuration.access_token = 'YOUR_ACCESS_TOKEN'

# create an instance of the API class
api_instance = swagger_client.OauthApi()
xAuthenticationStrategy = xAuthenticationStrategy_example # String | 
body =  # Users_body |  (optional)

try: 
    api_instance.users_put(xAuthenticationStrategy, body=body)
except ApiException as e:
    print("Exception when calling OauthApi->usersPut: %s\n" % e)

Parameters

Header parameters
Name Description
X-Authentication-Strategy*
String
Required
Body parameters
Name Description
body

Responses

Status: 200 - OK

Status: 201 - Created


Product

productByProductProfileUidProductProfileUidGet


/product/by-product-profile-uid/{product_profile_uid}

Usage and SDK Samples

curl -X GET\
\
"http://localhost:3004//product/by-product-profile-uid/{product_profile_uid}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ProductApi;

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

public class ProductApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();

        // Configure OAuth2 access token for authorization: application
        OAuth application = (OAuth) defaultClient.getAuthentication("application");
        application.setAccessToken("YOUR ACCESS TOKEN");

        ProductApi apiInstance = new ProductApi();
        String productProfileUid = productProfileUid_example; // String | 
        try {
            apiInstance.productByProductProfileUidProductProfileUidGet(productProfileUid);
        } catch (ApiException e) {
            System.err.println("Exception when calling ProductApi#productByProductProfileUidProductProfileUidGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ProductApi;

public class ProductApiExample {

    public static void main(String[] args) {
        ProductApi apiInstance = new ProductApi();
        String productProfileUid = productProfileUid_example; // String | 
        try {
            apiInstance.productByProductProfileUidProductProfileUidGet(productProfileUid);
        } catch (ApiException e) {
            System.err.println("Exception when calling ProductApi#productByProductProfileUidProductProfileUidGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
// Configure OAuth2 access token for authorization: (authentication scheme: application)
[apiConfig setAccessToken:@"YOUR_ACCESS_TOKEN"];
String *productProfileUid = productProfileUid_example; // 

ProductApi *apiInstance = [[ProductApi alloc] init];

[apiInstance productByProductProfileUidProductProfileUidGetWith:productProfileUid
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var 1TrueId30MakerCustomer = require('1_true_id_30_maker_customer');
var defaultClient = 1TrueId30MakerCustomer.ApiClient.instance;

// Configure OAuth2 access token for authorization: application
var application = defaultClient.authentications['application'];
application.accessToken = "YOUR ACCESS TOKEN"

var api = new 1TrueId30MakerCustomer.ProductApi()
var productProfileUid = productProfileUid_example; // {{String}} 

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.productByProductProfileUidProductProfileUidGet(productProfileUid, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            // Configure OAuth2 access token for authorization: application
            Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";

            var apiInstance = new ProductApi();
            var productProfileUid = productProfileUid_example;  // String | 

            try
            {
                apiInstance.productByProductProfileUidProductProfileUidGet(productProfileUid);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ProductApi.productByProductProfileUidProductProfileUidGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Configure OAuth2 access token for authorization: application
Swagger\Client\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');

$api_instance = new Swagger\Client\ApiProductApi();
$productProfileUid = productProfileUid_example; // String | 

try {
    $api_instance->productByProductProfileUidProductProfileUidGet($productProfileUid);
} catch (Exception $e) {
    echo 'Exception when calling ProductApi->productByProductProfileUidProductProfileUidGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ProductApi;

# Configure OAuth2 access token for authorization: application
$WWW::SwaggerClient::Configuration::access_token = 'YOUR_ACCESS_TOKEN';

my $api_instance = WWW::SwaggerClient::ProductApi->new();
my $productProfileUid = productProfileUid_example; # String | 

eval { 
    $api_instance->productByProductProfileUidProductProfileUidGet(productProfileUid => $productProfileUid);
};
if ($@) {
    warn "Exception when calling ProductApi->productByProductProfileUidProductProfileUidGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint

# Configure OAuth2 access token for authorization: application
swagger_client.configuration.access_token = 'YOUR_ACCESS_TOKEN'

# create an instance of the API class
api_instance = swagger_client.ProductApi()
productProfileUid = productProfileUid_example # String | 

try: 
    api_instance.product_by_product_profile_uid_product_profile_uid_get(productProfileUid)
except ApiException as e:
    print("Exception when calling ProductApi->productByProductProfileUidProductProfileUidGet: %s\n" % e)

Parameters

Path parameters
Name Description
product_profile_uid*
String
Required

Responses

Status: 200 - OK


productGetProductsByProductProfileUidGet


/product/getProductsByProductProfileUid/

Usage and SDK Samples

curl -X GET\
\
"http://localhost:3004//product/getProductsByProductProfileUid/"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ProductApi;

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

public class ProductApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();

        // Configure OAuth2 access token for authorization: application
        OAuth application = (OAuth) defaultClient.getAuthentication("application");
        application.setAccessToken("YOUR ACCESS TOKEN");

        ProductApi apiInstance = new ProductApi();
        try {
            apiInstance.productGetProductsByProductProfileUidGet();
        } catch (ApiException e) {
            System.err.println("Exception when calling ProductApi#productGetProductsByProductProfileUidGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ProductApi;

public class ProductApiExample {

    public static void main(String[] args) {
        ProductApi apiInstance = new ProductApi();
        try {
            apiInstance.productGetProductsByProductProfileUidGet();
        } catch (ApiException e) {
            System.err.println("Exception when calling ProductApi#productGetProductsByProductProfileUidGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
// Configure OAuth2 access token for authorization: (authentication scheme: application)
[apiConfig setAccessToken:@"YOUR_ACCESS_TOKEN"];

ProductApi *apiInstance = [[ProductApi alloc] init];

[apiInstance productGetProductsByProductProfileUidGetWithCompletionHandler: 
              ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var 1TrueId30MakerCustomer = require('1_true_id_30_maker_customer');
var defaultClient = 1TrueId30MakerCustomer.ApiClient.instance;

// Configure OAuth2 access token for authorization: application
var application = defaultClient.authentications['application'];
application.accessToken = "YOUR ACCESS TOKEN"

var api = new 1TrueId30MakerCustomer.ProductApi()
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.productGetProductsByProductProfileUidGet(callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            // Configure OAuth2 access token for authorization: application
            Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";

            var apiInstance = new ProductApi();

            try
            {
                apiInstance.productGetProductsByProductProfileUidGet();
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ProductApi.productGetProductsByProductProfileUidGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Configure OAuth2 access token for authorization: application
Swagger\Client\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');

$api_instance = new Swagger\Client\ApiProductApi();

try {
    $api_instance->productGetProductsByProductProfileUidGet();
} catch (Exception $e) {
    echo 'Exception when calling ProductApi->productGetProductsByProductProfileUidGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ProductApi;

# Configure OAuth2 access token for authorization: application
$WWW::SwaggerClient::Configuration::access_token = 'YOUR_ACCESS_TOKEN';

my $api_instance = WWW::SwaggerClient::ProductApi->new();

eval { 
    $api_instance->productGetProductsByProductProfileUidGet();
};
if ($@) {
    warn "Exception when calling ProductApi->productGetProductsByProductProfileUidGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint

# Configure OAuth2 access token for authorization: application
swagger_client.configuration.access_token = 'YOUR_ACCESS_TOKEN'

# create an instance of the API class
api_instance = swagger_client.ProductApi()

try: 
    api_instance.product_get_products_by_product_profile_uid_get()
except ApiException as e:
    print("Exception when calling ProductApi->productGetProductsByProductProfileUidGet: %s\n" % e)

Parameters

Responses

Status: 200 - OK


productProductUidGet


/product/{product_uid}

Usage and SDK Samples

curl -X GET\
\
"http://localhost:3004//product/{product_uid}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ProductApi;

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

public class ProductApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();

        // Configure OAuth2 access token for authorization: application
        OAuth application = (OAuth) defaultClient.getAuthentication("application");
        application.setAccessToken("YOUR ACCESS TOKEN");

        ProductApi apiInstance = new ProductApi();
        String productUid = productUid_example; // String | 
        try {
            apiInstance.productProductUidGet(productUid);
        } catch (ApiException e) {
            System.err.println("Exception when calling ProductApi#productProductUidGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ProductApi;

public class ProductApiExample {

    public static void main(String[] args) {
        ProductApi apiInstance = new ProductApi();
        String productUid = productUid_example; // String | 
        try {
            apiInstance.productProductUidGet(productUid);
        } catch (ApiException e) {
            System.err.println("Exception when calling ProductApi#productProductUidGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
// Configure OAuth2 access token for authorization: (authentication scheme: application)
[apiConfig setAccessToken:@"YOUR_ACCESS_TOKEN"];
String *productUid = productUid_example; // 

ProductApi *apiInstance = [[ProductApi alloc] init];

[apiInstance productProductUidGetWith:productUid
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var 1TrueId30MakerCustomer = require('1_true_id_30_maker_customer');
var defaultClient = 1TrueId30MakerCustomer.ApiClient.instance;

// Configure OAuth2 access token for authorization: application
var application = defaultClient.authentications['application'];
application.accessToken = "YOUR ACCESS TOKEN"

var api = new 1TrueId30MakerCustomer.ProductApi()
var productUid = productUid_example; // {{String}} 

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.productProductUidGet(productUid, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            // Configure OAuth2 access token for authorization: application
            Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";

            var apiInstance = new ProductApi();
            var productUid = productUid_example;  // String | 

            try
            {
                apiInstance.productProductUidGet(productUid);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ProductApi.productProductUidGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Configure OAuth2 access token for authorization: application
Swagger\Client\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');

$api_instance = new Swagger\Client\ApiProductApi();
$productUid = productUid_example; // String | 

try {
    $api_instance->productProductUidGet($productUid);
} catch (Exception $e) {
    echo 'Exception when calling ProductApi->productProductUidGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ProductApi;

# Configure OAuth2 access token for authorization: application
$WWW::SwaggerClient::Configuration::access_token = 'YOUR_ACCESS_TOKEN';

my $api_instance = WWW::SwaggerClient::ProductApi->new();
my $productUid = productUid_example; # String | 

eval { 
    $api_instance->productProductUidGet(productUid => $productUid);
};
if ($@) {
    warn "Exception when calling ProductApi->productProductUidGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint

# Configure OAuth2 access token for authorization: application
swagger_client.configuration.access_token = 'YOUR_ACCESS_TOKEN'

# create an instance of the API class
api_instance = swagger_client.ProductApi()
productUid = productUid_example # String | 

try: 
    api_instance.product_product_uid_get(productUid)
except ApiException as e:
    print("Exception when calling ProductApi->productProductUidGet: %s\n" % e)

Parameters

Path parameters
Name Description
product_uid*
String
Required

Responses

Status: 200 - OK


ProductProfile

productProfileByCodeProductProfileCodeGet


/productProfile/by-code/{product_profile_code}

Usage and SDK Samples

curl -X GET\
\
"http://localhost:3004//productProfile/by-code/{product_profile_code}?skip=&limit=&sort="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ProductProfileApi;

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

public class ProductProfileApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();

        // Configure OAuth2 access token for authorization: application
        OAuth application = (OAuth) defaultClient.getAuthentication("application");
        application.setAccessToken("YOUR ACCESS TOKEN");

        ProductProfileApi apiInstance = new ProductProfileApi();
        String productProfileCode = productProfileCode_example; // String | 
        String skip = skip_example; // String | 
        String limit = limit_example; // String | 
        String sort = sort_example; // String | 
        try {
            apiInstance.productProfileByCodeProductProfileCodeGet(productProfileCode, skip, limit, sort);
        } catch (ApiException e) {
            System.err.println("Exception when calling ProductProfileApi#productProfileByCodeProductProfileCodeGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ProductProfileApi;

public class ProductProfileApiExample {

    public static void main(String[] args) {
        ProductProfileApi apiInstance = new ProductProfileApi();
        String productProfileCode = productProfileCode_example; // String | 
        String skip = skip_example; // String | 
        String limit = limit_example; // String | 
        String sort = sort_example; // String | 
        try {
            apiInstance.productProfileByCodeProductProfileCodeGet(productProfileCode, skip, limit, sort);
        } catch (ApiException e) {
            System.err.println("Exception when calling ProductProfileApi#productProfileByCodeProductProfileCodeGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
// Configure OAuth2 access token for authorization: (authentication scheme: application)
[apiConfig setAccessToken:@"YOUR_ACCESS_TOKEN"];
String *productProfileCode = productProfileCode_example; // 
String *skip = skip_example; //  (optional)
String *limit = limit_example; //  (optional)
String *sort = sort_example; //  (optional)

ProductProfileApi *apiInstance = [[ProductProfileApi alloc] init];

[apiInstance productProfileByCodeProductProfileCodeGetWith:productProfileCode
    skip:skip
    limit:limit
    sort:sort
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var 1TrueId30MakerCustomer = require('1_true_id_30_maker_customer');
var defaultClient = 1TrueId30MakerCustomer.ApiClient.instance;

// Configure OAuth2 access token for authorization: application
var application = defaultClient.authentications['application'];
application.accessToken = "YOUR ACCESS TOKEN"

var api = new 1TrueId30MakerCustomer.ProductProfileApi()
var productProfileCode = productProfileCode_example; // {{String}} 
var opts = { 
  'skip': skip_example, // {{String}} 
  'limit': limit_example, // {{String}} 
  'sort': sort_example // {{String}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.productProfileByCodeProductProfileCodeGet(productProfileCode, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            // Configure OAuth2 access token for authorization: application
            Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";

            var apiInstance = new ProductProfileApi();
            var productProfileCode = productProfileCode_example;  // String | 
            var skip = skip_example;  // String |  (optional) 
            var limit = limit_example;  // String |  (optional) 
            var sort = sort_example;  // String |  (optional) 

            try
            {
                apiInstance.productProfileByCodeProductProfileCodeGet(productProfileCode, skip, limit, sort);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ProductProfileApi.productProfileByCodeProductProfileCodeGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Configure OAuth2 access token for authorization: application
Swagger\Client\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');

$api_instance = new Swagger\Client\ApiProductProfileApi();
$productProfileCode = productProfileCode_example; // String | 
$skip = skip_example; // String | 
$limit = limit_example; // String | 
$sort = sort_example; // String | 

try {
    $api_instance->productProfileByCodeProductProfileCodeGet($productProfileCode, $skip, $limit, $sort);
} catch (Exception $e) {
    echo 'Exception when calling ProductProfileApi->productProfileByCodeProductProfileCodeGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ProductProfileApi;

# Configure OAuth2 access token for authorization: application
$WWW::SwaggerClient::Configuration::access_token = 'YOUR_ACCESS_TOKEN';

my $api_instance = WWW::SwaggerClient::ProductProfileApi->new();
my $productProfileCode = productProfileCode_example; # String | 
my $skip = skip_example; # String | 
my $limit = limit_example; # String | 
my $sort = sort_example; # String | 

eval { 
    $api_instance->productProfileByCodeProductProfileCodeGet(productProfileCode => $productProfileCode, skip => $skip, limit => $limit, sort => $sort);
};
if ($@) {
    warn "Exception when calling ProductProfileApi->productProfileByCodeProductProfileCodeGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint

# Configure OAuth2 access token for authorization: application
swagger_client.configuration.access_token = 'YOUR_ACCESS_TOKEN'

# create an instance of the API class
api_instance = swagger_client.ProductProfileApi()
productProfileCode = productProfileCode_example # String | 
skip = skip_example # String |  (optional)
limit = limit_example # String |  (optional)
sort = sort_example # String |  (optional)

try: 
    api_instance.product_profile_by_code_product_profile_code_get(productProfileCode, skip=skip, limit=limit, sort=sort)
except ApiException as e:
    print("Exception when calling ProductProfileApi->productProfileByCodeProductProfileCodeGet: %s\n" % e)

Parameters

Path parameters
Name Description
product_profile_code*
String
Required
Query parameters
Name Description
skip
String
limit
String
sort
String

Responses

Status: 200 - OK


productProfileByCodeProductProfileCodeGet_1


/product-profile/by-code/{product_profile_code}

Usage and SDK Samples

curl -X GET\
\
"http://localhost:3004//product-profile/by-code/{product_profile_code}?skip=&limit=&sort="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ProductProfileApi;

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

public class ProductProfileApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();

        // Configure OAuth2 access token for authorization: application
        OAuth application = (OAuth) defaultClient.getAuthentication("application");
        application.setAccessToken("YOUR ACCESS TOKEN");

        ProductProfileApi apiInstance = new ProductProfileApi();
        String productProfileCode = productProfileCode_example; // String | 
        String skip = skip_example; // String | 
        String limit = limit_example; // String | 
        String sort = sort_example; // String | 
        try {
            apiInstance.productProfileByCodeProductProfileCodeGet_0(productProfileCode, skip, limit, sort);
        } catch (ApiException e) {
            System.err.println("Exception when calling ProductProfileApi#productProfileByCodeProductProfileCodeGet_0");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ProductProfileApi;

public class ProductProfileApiExample {

    public static void main(String[] args) {
        ProductProfileApi apiInstance = new ProductProfileApi();
        String productProfileCode = productProfileCode_example; // String | 
        String skip = skip_example; // String | 
        String limit = limit_example; // String | 
        String sort = sort_example; // String | 
        try {
            apiInstance.productProfileByCodeProductProfileCodeGet_0(productProfileCode, skip, limit, sort);
        } catch (ApiException e) {
            System.err.println("Exception when calling ProductProfileApi#productProfileByCodeProductProfileCodeGet_0");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
// Configure OAuth2 access token for authorization: (authentication scheme: application)
[apiConfig setAccessToken:@"YOUR_ACCESS_TOKEN"];
String *productProfileCode = productProfileCode_example; // 
String *skip = skip_example; //  (optional)
String *limit = limit_example; //  (optional)
String *sort = sort_example; //  (optional)

ProductProfileApi *apiInstance = [[ProductProfileApi alloc] init];

[apiInstance productProfileByCodeProductProfileCodeGet_1With:productProfileCode
    skip:skip
    limit:limit
    sort:sort
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var 1TrueId30MakerCustomer = require('1_true_id_30_maker_customer');
var defaultClient = 1TrueId30MakerCustomer.ApiClient.instance;

// Configure OAuth2 access token for authorization: application
var application = defaultClient.authentications['application'];
application.accessToken = "YOUR ACCESS TOKEN"

var api = new 1TrueId30MakerCustomer.ProductProfileApi()
var productProfileCode = productProfileCode_example; // {{String}} 
var opts = { 
  'skip': skip_example, // {{String}} 
  'limit': limit_example, // {{String}} 
  'sort': sort_example // {{String}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.productProfileByCodeProductProfileCodeGet_0(productProfileCode, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            // Configure OAuth2 access token for authorization: application
            Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";

            var apiInstance = new ProductProfileApi();
            var productProfileCode = productProfileCode_example;  // String | 
            var skip = skip_example;  // String |  (optional) 
            var limit = limit_example;  // String |  (optional) 
            var sort = sort_example;  // String |  (optional) 

            try
            {
                apiInstance.productProfileByCodeProductProfileCodeGet_0(productProfileCode, skip, limit, sort);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ProductProfileApi.productProfileByCodeProductProfileCodeGet_0: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Configure OAuth2 access token for authorization: application
Swagger\Client\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');

$api_instance = new Swagger\Client\ApiProductProfileApi();
$productProfileCode = productProfileCode_example; // String | 
$skip = skip_example; // String | 
$limit = limit_example; // String | 
$sort = sort_example; // String | 

try {
    $api_instance->productProfileByCodeProductProfileCodeGet_0($productProfileCode, $skip, $limit, $sort);
} catch (Exception $e) {
    echo 'Exception when calling ProductProfileApi->productProfileByCodeProductProfileCodeGet_0: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ProductProfileApi;

# Configure OAuth2 access token for authorization: application
$WWW::SwaggerClient::Configuration::access_token = 'YOUR_ACCESS_TOKEN';

my $api_instance = WWW::SwaggerClient::ProductProfileApi->new();
my $productProfileCode = productProfileCode_example; # String | 
my $skip = skip_example; # String | 
my $limit = limit_example; # String | 
my $sort = sort_example; # String | 

eval { 
    $api_instance->productProfileByCodeProductProfileCodeGet_0(productProfileCode => $productProfileCode, skip => $skip, limit => $limit, sort => $sort);
};
if ($@) {
    warn "Exception when calling ProductProfileApi->productProfileByCodeProductProfileCodeGet_0: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint

# Configure OAuth2 access token for authorization: application
swagger_client.configuration.access_token = 'YOUR_ACCESS_TOKEN'

# create an instance of the API class
api_instance = swagger_client.ProductProfileApi()
productProfileCode = productProfileCode_example # String | 
skip = skip_example # String |  (optional)
limit = limit_example # String |  (optional)
sort = sort_example # String |  (optional)

try: 
    api_instance.product_profile_by_code_product_profile_code_get_0(productProfileCode, skip=skip, limit=limit, sort=sort)
except ApiException as e:
    print("Exception when calling ProductProfileApi->productProfileByCodeProductProfileCodeGet_0: %s\n" % e)

Parameters

Path parameters
Name Description
product_profile_code*
String
Required
Query parameters
Name Description
skip
String
limit
String
sort
String

Responses

Status: 200 - OK


productProfileCountGet


/productProfile/count

Usage and SDK Samples

curl -X GET\
\
"http://localhost:3004//productProfile/count?skip=&limit=&sort=&q="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ProductProfileApi;

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

public class ProductProfileApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();

        // Configure OAuth2 access token for authorization: application
        OAuth application = (OAuth) defaultClient.getAuthentication("application");
        application.setAccessToken("YOUR ACCESS TOKEN");

        ProductProfileApi apiInstance = new ProductProfileApi();
        String skip = skip_example; // String | 
        String limit = limit_example; // String | 
        String sort = sort_example; // String | 
        String q = q_example; // String | 
        try {
            apiInstance.productProfileCountGet(skip, limit, sort, q);
        } catch (ApiException e) {
            System.err.println("Exception when calling ProductProfileApi#productProfileCountGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ProductProfileApi;

public class ProductProfileApiExample {

    public static void main(String[] args) {
        ProductProfileApi apiInstance = new ProductProfileApi();
        String skip = skip_example; // String | 
        String limit = limit_example; // String | 
        String sort = sort_example; // String | 
        String q = q_example; // String | 
        try {
            apiInstance.productProfileCountGet(skip, limit, sort, q);
        } catch (ApiException e) {
            System.err.println("Exception when calling ProductProfileApi#productProfileCountGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
// Configure OAuth2 access token for authorization: (authentication scheme: application)
[apiConfig setAccessToken:@"YOUR_ACCESS_TOKEN"];
String *skip = skip_example; //  (optional)
String *limit = limit_example; //  (optional)
String *sort = sort_example; //  (optional)
String *q = q_example; //  (optional)

ProductProfileApi *apiInstance = [[ProductProfileApi alloc] init];

[apiInstance productProfileCountGetWith:skip
    limit:limit
    sort:sort
    q:q
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var 1TrueId30MakerCustomer = require('1_true_id_30_maker_customer');
var defaultClient = 1TrueId30MakerCustomer.ApiClient.instance;

// Configure OAuth2 access token for authorization: application
var application = defaultClient.authentications['application'];
application.accessToken = "YOUR ACCESS TOKEN"

var api = new 1TrueId30MakerCustomer.ProductProfileApi()
var opts = { 
  'skip': skip_example, // {{String}} 
  'limit': limit_example, // {{String}} 
  'sort': sort_example, // {{String}} 
  'q': q_example // {{String}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.productProfileCountGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            // Configure OAuth2 access token for authorization: application
            Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";

            var apiInstance = new ProductProfileApi();
            var skip = skip_example;  // String |  (optional) 
            var limit = limit_example;  // String |  (optional) 
            var sort = sort_example;  // String |  (optional) 
            var q = q_example;  // String |  (optional) 

            try
            {
                apiInstance.productProfileCountGet(skip, limit, sort, q);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ProductProfileApi.productProfileCountGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Configure OAuth2 access token for authorization: application
Swagger\Client\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');

$api_instance = new Swagger\Client\ApiProductProfileApi();
$skip = skip_example; // String | 
$limit = limit_example; // String | 
$sort = sort_example; // String | 
$q = q_example; // String | 

try {
    $api_instance->productProfileCountGet($skip, $limit, $sort, $q);
} catch (Exception $e) {
    echo 'Exception when calling ProductProfileApi->productProfileCountGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ProductProfileApi;

# Configure OAuth2 access token for authorization: application
$WWW::SwaggerClient::Configuration::access_token = 'YOUR_ACCESS_TOKEN';

my $api_instance = WWW::SwaggerClient::ProductProfileApi->new();
my $skip = skip_example; # String | 
my $limit = limit_example; # String | 
my $sort = sort_example; # String | 
my $q = q_example; # String | 

eval { 
    $api_instance->productProfileCountGet(skip => $skip, limit => $limit, sort => $sort, q => $q);
};
if ($@) {
    warn "Exception when calling ProductProfileApi->productProfileCountGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint

# Configure OAuth2 access token for authorization: application
swagger_client.configuration.access_token = 'YOUR_ACCESS_TOKEN'

# create an instance of the API class
api_instance = swagger_client.ProductProfileApi()
skip = skip_example # String |  (optional)
limit = limit_example # String |  (optional)
sort = sort_example # String |  (optional)
q = q_example # String |  (optional)

try: 
    api_instance.product_profile_count_get(skip=skip, limit=limit, sort=sort, q=q)
except ApiException as e:
    print("Exception when calling ProductProfileApi->productProfileCountGet: %s\n" % e)

Parameters

Query parameters
Name Description
skip
String
limit
String
sort
String
q
String

Responses

Status: 200 - OK


productProfileCountGet_2


/product-profile/count

Usage and SDK Samples

curl -X GET\
\
"http://localhost:3004//product-profile/count?skip=&limit=&sort=&q="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ProductProfileApi;

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

public class ProductProfileApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();

        // Configure OAuth2 access token for authorization: application
        OAuth application = (OAuth) defaultClient.getAuthentication("application");
        application.setAccessToken("YOUR ACCESS TOKEN");

        ProductProfileApi apiInstance = new ProductProfileApi();
        String skip = skip_example; // String | 
        String limit = limit_example; // String | 
        String sort = sort_example; // String | 
        String q = q_example; // String | 
        try {
            apiInstance.productProfileCountGet_0(skip, limit, sort, q);
        } catch (ApiException e) {
            System.err.println("Exception when calling ProductProfileApi#productProfileCountGet_0");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ProductProfileApi;

public class ProductProfileApiExample {

    public static void main(String[] args) {
        ProductProfileApi apiInstance = new ProductProfileApi();
        String skip = skip_example; // String | 
        String limit = limit_example; // String | 
        String sort = sort_example; // String | 
        String q = q_example; // String | 
        try {
            apiInstance.productProfileCountGet_0(skip, limit, sort, q);
        } catch (ApiException e) {
            System.err.println("Exception when calling ProductProfileApi#productProfileCountGet_0");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
// Configure OAuth2 access token for authorization: (authentication scheme: application)
[apiConfig setAccessToken:@"YOUR_ACCESS_TOKEN"];
String *skip = skip_example; //  (optional)
String *limit = limit_example; //  (optional)
String *sort = sort_example; //  (optional)
String *q = q_example; //  (optional)

ProductProfileApi *apiInstance = [[ProductProfileApi alloc] init];

[apiInstance productProfileCountGet_2With:skip
    limit:limit
    sort:sort
    q:q
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var 1TrueId30MakerCustomer = require('1_true_id_30_maker_customer');
var defaultClient = 1TrueId30MakerCustomer.ApiClient.instance;

// Configure OAuth2 access token for authorization: application
var application = defaultClient.authentications['application'];
application.accessToken = "YOUR ACCESS TOKEN"

var api = new 1TrueId30MakerCustomer.ProductProfileApi()
var opts = { 
  'skip': skip_example, // {{String}} 
  'limit': limit_example, // {{String}} 
  'sort': sort_example, // {{String}} 
  'q': q_example // {{String}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.productProfileCountGet_0(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            // Configure OAuth2 access token for authorization: application
            Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";

            var apiInstance = new ProductProfileApi();
            var skip = skip_example;  // String |  (optional) 
            var limit = limit_example;  // String |  (optional) 
            var sort = sort_example;  // String |  (optional) 
            var q = q_example;  // String |  (optional) 

            try
            {
                apiInstance.productProfileCountGet_0(skip, limit, sort, q);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ProductProfileApi.productProfileCountGet_0: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Configure OAuth2 access token for authorization: application
Swagger\Client\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');

$api_instance = new Swagger\Client\ApiProductProfileApi();
$skip = skip_example; // String | 
$limit = limit_example; // String | 
$sort = sort_example; // String | 
$q = q_example; // String | 

try {
    $api_instance->productProfileCountGet_0($skip, $limit, $sort, $q);
} catch (Exception $e) {
    echo 'Exception when calling ProductProfileApi->productProfileCountGet_0: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ProductProfileApi;

# Configure OAuth2 access token for authorization: application
$WWW::SwaggerClient::Configuration::access_token = 'YOUR_ACCESS_TOKEN';

my $api_instance = WWW::SwaggerClient::ProductProfileApi->new();
my $skip = skip_example; # String | 
my $limit = limit_example; # String | 
my $sort = sort_example; # String | 
my $q = q_example; # String | 

eval { 
    $api_instance->productProfileCountGet_0(skip => $skip, limit => $limit, sort => $sort, q => $q);
};
if ($@) {
    warn "Exception when calling ProductProfileApi->productProfileCountGet_0: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint

# Configure OAuth2 access token for authorization: application
swagger_client.configuration.access_token = 'YOUR_ACCESS_TOKEN'

# create an instance of the API class
api_instance = swagger_client.ProductProfileApi()
skip = skip_example # String |  (optional)
limit = limit_example # String |  (optional)
sort = sort_example # String |  (optional)
q = q_example # String |  (optional)

try: 
    api_instance.product_profile_count_get_0(skip=skip, limit=limit, sort=sort, q=q)
except ApiException as e:
    print("Exception when calling ProductProfileApi->productProfileCountGet_0: %s\n" % e)

Parameters

Query parameters
Name Description
skip
String
limit
String
sort
String
q
String

Responses

Status: 200 - OK


productProfileGeneratingAProductPost


/productProfile/generating-a-product

Usage and SDK Samples

curl -X POST\
\
"http://localhost:3004//productProfile/generating-a-product"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ProductProfileApi;

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

public class ProductProfileApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();

        // Configure OAuth2 access token for authorization: application
        OAuth application = (OAuth) defaultClient.getAuthentication("application");
        application.setAccessToken("YOUR ACCESS TOKEN");

        ProductProfileApi apiInstance = new ProductProfileApi();
        try {
            apiInstance.productProfileGeneratingAProductPost();
        } catch (ApiException e) {
            System.err.println("Exception when calling ProductProfileApi#productProfileGeneratingAProductPost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ProductProfileApi;

public class ProductProfileApiExample {

    public static void main(String[] args) {
        ProductProfileApi apiInstance = new ProductProfileApi();
        try {
            apiInstance.productProfileGeneratingAProductPost();
        } catch (ApiException e) {
            System.err.println("Exception when calling ProductProfileApi#productProfileGeneratingAProductPost");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
// Configure OAuth2 access token for authorization: (authentication scheme: application)
[apiConfig setAccessToken:@"YOUR_ACCESS_TOKEN"];

ProductProfileApi *apiInstance = [[ProductProfileApi alloc] init];

[apiInstance productProfileGeneratingAProductPostWithCompletionHandler: 
              ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var 1TrueId30MakerCustomer = require('1_true_id_30_maker_customer');
var defaultClient = 1TrueId30MakerCustomer.ApiClient.instance;

// Configure OAuth2 access token for authorization: application
var application = defaultClient.authentications['application'];
application.accessToken = "YOUR ACCESS TOKEN"

var api = new 1TrueId30MakerCustomer.ProductProfileApi()
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.productProfileGeneratingAProductPost(callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            // Configure OAuth2 access token for authorization: application
            Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";

            var apiInstance = new ProductProfileApi();

            try
            {
                apiInstance.productProfileGeneratingAProductPost();
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ProductProfileApi.productProfileGeneratingAProductPost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Configure OAuth2 access token for authorization: application
Swagger\Client\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');

$api_instance = new Swagger\Client\ApiProductProfileApi();

try {
    $api_instance->productProfileGeneratingAProductPost();
} catch (Exception $e) {
    echo 'Exception when calling ProductProfileApi->productProfileGeneratingAProductPost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ProductProfileApi;

# Configure OAuth2 access token for authorization: application
$WWW::SwaggerClient::Configuration::access_token = 'YOUR_ACCESS_TOKEN';

my $api_instance = WWW::SwaggerClient::ProductProfileApi->new();

eval { 
    $api_instance->productProfileGeneratingAProductPost();
};
if ($@) {
    warn "Exception when calling ProductProfileApi->productProfileGeneratingAProductPost: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint

# Configure OAuth2 access token for authorization: application
swagger_client.configuration.access_token = 'YOUR_ACCESS_TOKEN'

# create an instance of the API class
api_instance = swagger_client.ProductProfileApi()

try: 
    api_instance.product_profile_generating_a_product_post()
except ApiException as e:
    print("Exception when calling ProductProfileApi->productProfileGeneratingAProductPost: %s\n" % e)

Parameters

Responses

Status: 200 - OK


productProfileGeneratingAProductPost_3


/product-profile/generating-a-product

Usage and SDK Samples

curl -X POST\
\
"http://localhost:3004//product-profile/generating-a-product"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ProductProfileApi;

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

public class ProductProfileApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();

        // Configure OAuth2 access token for authorization: application
        OAuth application = (OAuth) defaultClient.getAuthentication("application");
        application.setAccessToken("YOUR ACCESS TOKEN");

        ProductProfileApi apiInstance = new ProductProfileApi();
        try {
            apiInstance.productProfileGeneratingAProductPost_0();
        } catch (ApiException e) {
            System.err.println("Exception when calling ProductProfileApi#productProfileGeneratingAProductPost_0");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ProductProfileApi;

public class ProductProfileApiExample {

    public static void main(String[] args) {
        ProductProfileApi apiInstance = new ProductProfileApi();
        try {
            apiInstance.productProfileGeneratingAProductPost_0();
        } catch (ApiException e) {
            System.err.println("Exception when calling ProductProfileApi#productProfileGeneratingAProductPost_0");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
// Configure OAuth2 access token for authorization: (authentication scheme: application)
[apiConfig setAccessToken:@"YOUR_ACCESS_TOKEN"];

ProductProfileApi *apiInstance = [[ProductProfileApi alloc] init];

[apiInstance productProfileGeneratingAProductPost_3WithCompletionHandler: 
              ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var 1TrueId30MakerCustomer = require('1_true_id_30_maker_customer');
var defaultClient = 1TrueId30MakerCustomer.ApiClient.instance;

// Configure OAuth2 access token for authorization: application
var application = defaultClient.authentications['application'];
application.accessToken = "YOUR ACCESS TOKEN"

var api = new 1TrueId30MakerCustomer.ProductProfileApi()
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.productProfileGeneratingAProductPost_0(callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            // Configure OAuth2 access token for authorization: application
            Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";

            var apiInstance = new ProductProfileApi();

            try
            {
                apiInstance.productProfileGeneratingAProductPost_0();
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ProductProfileApi.productProfileGeneratingAProductPost_0: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Configure OAuth2 access token for authorization: application
Swagger\Client\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');

$api_instance = new Swagger\Client\ApiProductProfileApi();

try {
    $api_instance->productProfileGeneratingAProductPost_0();
} catch (Exception $e) {
    echo 'Exception when calling ProductProfileApi->productProfileGeneratingAProductPost_0: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ProductProfileApi;

# Configure OAuth2 access token for authorization: application
$WWW::SwaggerClient::Configuration::access_token = 'YOUR_ACCESS_TOKEN';

my $api_instance = WWW::SwaggerClient::ProductProfileApi->new();

eval { 
    $api_instance->productProfileGeneratingAProductPost_0();
};
if ($@) {
    warn "Exception when calling ProductProfileApi->productProfileGeneratingAProductPost_0: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint

# Configure OAuth2 access token for authorization: application
swagger_client.configuration.access_token = 'YOUR_ACCESS_TOKEN'

# create an instance of the API class
api_instance = swagger_client.ProductProfileApi()

try: 
    api_instance.product_profile_generating_a_product_post_0()
except ApiException as e:
    print("Exception when calling ProductProfileApi->productProfileGeneratingAProductPost_0: %s\n" % e)

Parameters

Responses

Status: 200 - OK


productProfileGet


/productProfile/

Usage and SDK Samples

curl -X GET\
\
"http://localhost:3004//productProfile/?skip=&limit=&sort=&q="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ProductProfileApi;

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

public class ProductProfileApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();

        // Configure OAuth2 access token for authorization: application
        OAuth application = (OAuth) defaultClient.getAuthentication("application");
        application.setAccessToken("YOUR ACCESS TOKEN");

        ProductProfileApi apiInstance = new ProductProfileApi();
        String skip = skip_example; // String | 
        String limit = limit_example; // String | 
        String sort = sort_example; // String | 
        String q = q_example; // String | 
        try {
            apiInstance.productProfileGet(skip, limit, sort, q);
        } catch (ApiException e) {
            System.err.println("Exception when calling ProductProfileApi#productProfileGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ProductProfileApi;

public class ProductProfileApiExample {

    public static void main(String[] args) {
        ProductProfileApi apiInstance = new ProductProfileApi();
        String skip = skip_example; // String | 
        String limit = limit_example; // String | 
        String sort = sort_example; // String | 
        String q = q_example; // String | 
        try {
            apiInstance.productProfileGet(skip, limit, sort, q);
        } catch (ApiException e) {
            System.err.println("Exception when calling ProductProfileApi#productProfileGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
// Configure OAuth2 access token for authorization: (authentication scheme: application)
[apiConfig setAccessToken:@"YOUR_ACCESS_TOKEN"];
String *skip = skip_example; //  (optional)
String *limit = limit_example; //  (optional)
String *sort = sort_example; //  (optional)
String *q = q_example; //  (optional)

ProductProfileApi *apiInstance = [[ProductProfileApi alloc] init];

[apiInstance productProfileGetWith:skip
    limit:limit
    sort:sort
    q:q
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var 1TrueId30MakerCustomer = require('1_true_id_30_maker_customer');
var defaultClient = 1TrueId30MakerCustomer.ApiClient.instance;

// Configure OAuth2 access token for authorization: application
var application = defaultClient.authentications['application'];
application.accessToken = "YOUR ACCESS TOKEN"

var api = new 1TrueId30MakerCustomer.ProductProfileApi()
var opts = { 
  'skip': skip_example, // {{String}} 
  'limit': limit_example, // {{String}} 
  'sort': sort_example, // {{String}} 
  'q': q_example // {{String}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.productProfileGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            // Configure OAuth2 access token for authorization: application
            Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";

            var apiInstance = new ProductProfileApi();
            var skip = skip_example;  // String |  (optional) 
            var limit = limit_example;  // String |  (optional) 
            var sort = sort_example;  // String |  (optional) 
            var q = q_example;  // String |  (optional) 

            try
            {
                apiInstance.productProfileGet(skip, limit, sort, q);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ProductProfileApi.productProfileGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Configure OAuth2 access token for authorization: application
Swagger\Client\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');

$api_instance = new Swagger\Client\ApiProductProfileApi();
$skip = skip_example; // String | 
$limit = limit_example; // String | 
$sort = sort_example; // String | 
$q = q_example; // String | 

try {
    $api_instance->productProfileGet($skip, $limit, $sort, $q);
} catch (Exception $e) {
    echo 'Exception when calling ProductProfileApi->productProfileGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ProductProfileApi;

# Configure OAuth2 access token for authorization: application
$WWW::SwaggerClient::Configuration::access_token = 'YOUR_ACCESS_TOKEN';

my $api_instance = WWW::SwaggerClient::ProductProfileApi->new();
my $skip = skip_example; # String | 
my $limit = limit_example; # String | 
my $sort = sort_example; # String | 
my $q = q_example; # String | 

eval { 
    $api_instance->productProfileGet(skip => $skip, limit => $limit, sort => $sort, q => $q);
};
if ($@) {
    warn "Exception when calling ProductProfileApi->productProfileGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint

# Configure OAuth2 access token for authorization: application
swagger_client.configuration.access_token = 'YOUR_ACCESS_TOKEN'

# create an instance of the API class
api_instance = swagger_client.ProductProfileApi()
skip = skip_example # String |  (optional)
limit = limit_example # String |  (optional)
sort = sort_example # String |  (optional)
q = q_example # String |  (optional)

try: 
    api_instance.product_profile_get(skip=skip, limit=limit, sort=sort, q=q)
except ApiException as e:
    print("Exception when calling ProductProfileApi->productProfileGet: %s\n" % e)

Parameters

Query parameters
Name Description
skip
String
limit
String
sort
String
q
String

Responses

Status: 200 - OK


productProfileGet_4


/product-profile/

Usage and SDK Samples

curl -X GET\
\
"http://localhost:3004//product-profile/?skip=&limit=&sort=&q="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ProductProfileApi;

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

public class ProductProfileApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();

        // Configure OAuth2 access token for authorization: application
        OAuth application = (OAuth) defaultClient.getAuthentication("application");
        application.setAccessToken("YOUR ACCESS TOKEN");

        ProductProfileApi apiInstance = new ProductProfileApi();
        String skip = skip_example; // String | 
        String limit = limit_example; // String | 
        String sort = sort_example; // String | 
        String q = q_example; // String | 
        try {
            apiInstance.productProfileGet_0(skip, limit, sort, q);
        } catch (ApiException e) {
            System.err.println("Exception when calling ProductProfileApi#productProfileGet_0");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ProductProfileApi;

public class ProductProfileApiExample {

    public static void main(String[] args) {
        ProductProfileApi apiInstance = new ProductProfileApi();
        String skip = skip_example; // String | 
        String limit = limit_example; // String | 
        String sort = sort_example; // String | 
        String q = q_example; // String | 
        try {
            apiInstance.productProfileGet_0(skip, limit, sort, q);
        } catch (ApiException e) {
            System.err.println("Exception when calling ProductProfileApi#productProfileGet_0");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
// Configure OAuth2 access token for authorization: (authentication scheme: application)
[apiConfig setAccessToken:@"YOUR_ACCESS_TOKEN"];
String *skip = skip_example; //  (optional)
String *limit = limit_example; //  (optional)
String *sort = sort_example; //  (optional)
String *q = q_example; //  (optional)

ProductProfileApi *apiInstance = [[ProductProfileApi alloc] init];

[apiInstance productProfileGet_4With:skip
    limit:limit
    sort:sort
    q:q
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var 1TrueId30MakerCustomer = require('1_true_id_30_maker_customer');
var defaultClient = 1TrueId30MakerCustomer.ApiClient.instance;

// Configure OAuth2 access token for authorization: application
var application = defaultClient.authentications['application'];
application.accessToken = "YOUR ACCESS TOKEN"

var api = new 1TrueId30MakerCustomer.ProductProfileApi()
var opts = { 
  'skip': skip_example, // {{String}} 
  'limit': limit_example, // {{String}} 
  'sort': sort_example, // {{String}} 
  'q': q_example // {{String}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.productProfileGet_0(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            // Configure OAuth2 access token for authorization: application
            Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";

            var apiInstance = new ProductProfileApi();
            var skip = skip_example;  // String |  (optional) 
            var limit = limit_example;  // String |  (optional) 
            var sort = sort_example;  // String |  (optional) 
            var q = q_example;  // String |  (optional) 

            try
            {
                apiInstance.productProfileGet_0(skip, limit, sort, q);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ProductProfileApi.productProfileGet_0: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Configure OAuth2 access token for authorization: application
Swagger\Client\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');

$api_instance = new Swagger\Client\ApiProductProfileApi();
$skip = skip_example; // String | 
$limit = limit_example; // String | 
$sort = sort_example; // String | 
$q = q_example; // String | 

try {
    $api_instance->productProfileGet_0($skip, $limit, $sort, $q);
} catch (Exception $e) {
    echo 'Exception when calling ProductProfileApi->productProfileGet_0: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ProductProfileApi;

# Configure OAuth2 access token for authorization: application
$WWW::SwaggerClient::Configuration::access_token = 'YOUR_ACCESS_TOKEN';

my $api_instance = WWW::SwaggerClient::ProductProfileApi->new();
my $skip = skip_example; # String | 
my $limit = limit_example; # String | 
my $sort = sort_example; # String | 
my $q = q_example; # String | 

eval { 
    $api_instance->productProfileGet_0(skip => $skip, limit => $limit, sort => $sort, q => $q);
};
if ($@) {
    warn "Exception when calling ProductProfileApi->productProfileGet_0: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint

# Configure OAuth2 access token for authorization: application
swagger_client.configuration.access_token = 'YOUR_ACCESS_TOKEN'

# create an instance of the API class
api_instance = swagger_client.ProductProfileApi()
skip = skip_example # String |  (optional)
limit = limit_example # String |  (optional)
sort = sort_example # String |  (optional)
q = q_example # String |  (optional)

try: 
    api_instance.product_profile_get_0(skip=skip, limit=limit, sort=sort, q=q)
except ApiException as e:
    print("Exception when calling ProductProfileApi->productProfileGet_0: %s\n" % e)

Parameters

Query parameters
Name Description
skip
String
limit
String
sort
String
q
String

Responses

Status: 200 - OK


productProfilePost


/productProfile/

Usage and SDK Samples

curl -X POST\
\
-H "Content-Type: application/json"\
"http://localhost:3004//productProfile/"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ProductProfileApi;

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

public class ProductProfileApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();

        // Configure OAuth2 access token for authorization: application
        OAuth application = (OAuth) defaultClient.getAuthentication("application");
        application.setAccessToken("YOUR ACCESS TOKEN");

        ProductProfileApi apiInstance = new ProductProfileApi();
        ProductProfile_body body = ; // ProductProfile_body | 
        try {
            apiInstance.productProfilePost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling ProductProfileApi#productProfilePost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ProductProfileApi;

public class ProductProfileApiExample {

    public static void main(String[] args) {
        ProductProfileApi apiInstance = new ProductProfileApi();
        ProductProfile_body body = ; // ProductProfile_body | 
        try {
            apiInstance.productProfilePost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling ProductProfileApi#productProfilePost");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
// Configure OAuth2 access token for authorization: (authentication scheme: application)
[apiConfig setAccessToken:@"YOUR_ACCESS_TOKEN"];
ProductProfile_body *body = ; //  (optional)

ProductProfileApi *apiInstance = [[ProductProfileApi alloc] init];

[apiInstance productProfilePostWith:body
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var 1TrueId30MakerCustomer = require('1_true_id_30_maker_customer');
var defaultClient = 1TrueId30MakerCustomer.ApiClient.instance;

// Configure OAuth2 access token for authorization: application
var application = defaultClient.authentications['application'];
application.accessToken = "YOUR ACCESS TOKEN"

var api = new 1TrueId30MakerCustomer.ProductProfileApi()
var opts = { 
  'body':  // {{ProductProfile_body}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.productProfilePost(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            // Configure OAuth2 access token for authorization: application
            Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";

            var apiInstance = new ProductProfileApi();
            var body = new ProductProfile_body(); // ProductProfile_body |  (optional) 

            try
            {
                apiInstance.productProfilePost(body);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ProductProfileApi.productProfilePost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Configure OAuth2 access token for authorization: application
Swagger\Client\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');

$api_instance = new Swagger\Client\ApiProductProfileApi();
$body = ; // ProductProfile_body | 

try {
    $api_instance->productProfilePost($body);
} catch (Exception $e) {
    echo 'Exception when calling ProductProfileApi->productProfilePost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ProductProfileApi;

# Configure OAuth2 access token for authorization: application
$WWW::SwaggerClient::Configuration::access_token = 'YOUR_ACCESS_TOKEN';

my $api_instance = WWW::SwaggerClient::ProductProfileApi->new();
my $body = WWW::SwaggerClient::Object::ProductProfile_body->new(); # ProductProfile_body | 

eval { 
    $api_instance->productProfilePost(body => $body);
};
if ($@) {
    warn "Exception when calling ProductProfileApi->productProfilePost: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint

# Configure OAuth2 access token for authorization: application
swagger_client.configuration.access_token = 'YOUR_ACCESS_TOKEN'

# create an instance of the API class
api_instance = swagger_client.ProductProfileApi()
body =  # ProductProfile_body |  (optional)

try: 
    api_instance.product_profile_post(body=body)
except ApiException as e:
    print("Exception when calling ProductProfileApi->productProfilePost: %s\n" % e)

Parameters

Body parameters
Name Description
body

Responses

Status: 200 - OK


productProfilePost_5


/product-profile/

Usage and SDK Samples

curl -X POST\
\
-H "Content-Type: application/json"\
"http://localhost:3004//product-profile/"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ProductProfileApi;

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

public class ProductProfileApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();

        // Configure OAuth2 access token for authorization: application
        OAuth application = (OAuth) defaultClient.getAuthentication("application");
        application.setAccessToken("YOUR ACCESS TOKEN");

        ProductProfileApi apiInstance = new ProductProfileApi();
        Productprofile_body body = ; // Productprofile_body | 
        try {
            apiInstance.productProfilePost_0(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling ProductProfileApi#productProfilePost_0");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ProductProfileApi;

public class ProductProfileApiExample {

    public static void main(String[] args) {
        ProductProfileApi apiInstance = new ProductProfileApi();
        Productprofile_body body = ; // Productprofile_body | 
        try {
            apiInstance.productProfilePost_0(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling ProductProfileApi#productProfilePost_0");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
// Configure OAuth2 access token for authorization: (authentication scheme: application)
[apiConfig setAccessToken:@"YOUR_ACCESS_TOKEN"];
Productprofile_body *body = ; //  (optional)

ProductProfileApi *apiInstance = [[ProductProfileApi alloc] init];

[apiInstance productProfilePost_5With:body
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var 1TrueId30MakerCustomer = require('1_true_id_30_maker_customer');
var defaultClient = 1TrueId30MakerCustomer.ApiClient.instance;

// Configure OAuth2 access token for authorization: application
var application = defaultClient.authentications['application'];
application.accessToken = "YOUR ACCESS TOKEN"

var api = new 1TrueId30MakerCustomer.ProductProfileApi()
var opts = { 
  'body':  // {{Productprofile_body}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.productProfilePost_0(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            // Configure OAuth2 access token for authorization: application
            Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";

            var apiInstance = new ProductProfileApi();
            var body = new Productprofile_body(); // Productprofile_body |  (optional) 

            try
            {
                apiInstance.productProfilePost_0(body);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ProductProfileApi.productProfilePost_0: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Configure OAuth2 access token for authorization: application
Swagger\Client\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');

$api_instance = new Swagger\Client\ApiProductProfileApi();
$body = ; // Productprofile_body | 

try {
    $api_instance->productProfilePost_0($body);
} catch (Exception $e) {
    echo 'Exception when calling ProductProfileApi->productProfilePost_0: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ProductProfileApi;

# Configure OAuth2 access token for authorization: application
$WWW::SwaggerClient::Configuration::access_token = 'YOUR_ACCESS_TOKEN';

my $api_instance = WWW::SwaggerClient::ProductProfileApi->new();
my $body = WWW::SwaggerClient::Object::Productprofile_body->new(); # Productprofile_body | 

eval { 
    $api_instance->productProfilePost_0(body => $body);
};
if ($@) {
    warn "Exception when calling ProductProfileApi->productProfilePost_0: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint

# Configure OAuth2 access token for authorization: application
swagger_client.configuration.access_token = 'YOUR_ACCESS_TOKEN'

# create an instance of the API class
api_instance = swagger_client.ProductProfileApi()
body =  # Productprofile_body |  (optional)

try: 
    api_instance.product_profile_post_0(body=body)
except ApiException as e:
    print("Exception when calling ProductProfileApi->productProfilePost_0: %s\n" % e)

Parameters

Body parameters
Name Description
body

Responses

Status: 200 - OK


productProfileProductProfileUidGet


/productProfile/{product_profile_uid}

Usage and SDK Samples

curl -X GET\
\
"http://localhost:3004//productProfile/{product_profile_uid}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ProductProfileApi;

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

public class ProductProfileApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();

        // Configure OAuth2 access token for authorization: application
        OAuth application = (OAuth) defaultClient.getAuthentication("application");
        application.setAccessToken("YOUR ACCESS TOKEN");

        ProductProfileApi apiInstance = new ProductProfileApi();
        String productProfileUid = productProfileUid_example; // String | 
        try {
            apiInstance.productProfileProductProfileUidGet(productProfileUid);
        } catch (ApiException e) {
            System.err.println("Exception when calling ProductProfileApi#productProfileProductProfileUidGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ProductProfileApi;

public class ProductProfileApiExample {

    public static void main(String[] args) {
        ProductProfileApi apiInstance = new ProductProfileApi();
        String productProfileUid = productProfileUid_example; // String | 
        try {
            apiInstance.productProfileProductProfileUidGet(productProfileUid);
        } catch (ApiException e) {
            System.err.println("Exception when calling ProductProfileApi#productProfileProductProfileUidGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
// Configure OAuth2 access token for authorization: (authentication scheme: application)
[apiConfig setAccessToken:@"YOUR_ACCESS_TOKEN"];
String *productProfileUid = productProfileUid_example; // 

ProductProfileApi *apiInstance = [[ProductProfileApi alloc] init];

[apiInstance productProfileProductProfileUidGetWith:productProfileUid
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var 1TrueId30MakerCustomer = require('1_true_id_30_maker_customer');
var defaultClient = 1TrueId30MakerCustomer.ApiClient.instance;

// Configure OAuth2 access token for authorization: application
var application = defaultClient.authentications['application'];
application.accessToken = "YOUR ACCESS TOKEN"

var api = new 1TrueId30MakerCustomer.ProductProfileApi()
var productProfileUid = productProfileUid_example; // {{String}} 

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.productProfileProductProfileUidGet(productProfileUid, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            // Configure OAuth2 access token for authorization: application
            Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";

            var apiInstance = new ProductProfileApi();
            var productProfileUid = productProfileUid_example;  // String | 

            try
            {
                apiInstance.productProfileProductProfileUidGet(productProfileUid);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ProductProfileApi.productProfileProductProfileUidGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Configure OAuth2 access token for authorization: application
Swagger\Client\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');

$api_instance = new Swagger\Client\ApiProductProfileApi();
$productProfileUid = productProfileUid_example; // String | 

try {
    $api_instance->productProfileProductProfileUidGet($productProfileUid);
} catch (Exception $e) {
    echo 'Exception when calling ProductProfileApi->productProfileProductProfileUidGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ProductProfileApi;

# Configure OAuth2 access token for authorization: application
$WWW::SwaggerClient::Configuration::access_token = 'YOUR_ACCESS_TOKEN';

my $api_instance = WWW::SwaggerClient::ProductProfileApi->new();
my $productProfileUid = productProfileUid_example; # String | 

eval { 
    $api_instance->productProfileProductProfileUidGet(productProfileUid => $productProfileUid);
};
if ($@) {
    warn "Exception when calling ProductProfileApi->productProfileProductProfileUidGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint

# Configure OAuth2 access token for authorization: application
swagger_client.configuration.access_token = 'YOUR_ACCESS_TOKEN'

# create an instance of the API class
api_instance = swagger_client.ProductProfileApi()
productProfileUid = productProfileUid_example # String | 

try: 
    api_instance.product_profile_product_profile_uid_get(productProfileUid)
except ApiException as e:
    print("Exception when calling ProductProfileApi->productProfileProductProfileUidGet: %s\n" % e)

Parameters

Path parameters
Name Description
product_profile_uid*
String
Required

Responses

Status: 200 - OK


productProfileProductProfileUidGet_6


/product-profile/{product_profile_uid}

Usage and SDK Samples

curl -X GET\
\
"http://localhost:3004//product-profile/{product_profile_uid}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ProductProfileApi;

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

public class ProductProfileApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();

        // Configure OAuth2 access token for authorization: application
        OAuth application = (OAuth) defaultClient.getAuthentication("application");
        application.setAccessToken("YOUR ACCESS TOKEN");

        ProductProfileApi apiInstance = new ProductProfileApi();
        String productProfileUid = productProfileUid_example; // String | 
        try {
            apiInstance.productProfileProductProfileUidGet_0(productProfileUid);
        } catch (ApiException e) {
            System.err.println("Exception when calling ProductProfileApi#productProfileProductProfileUidGet_0");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ProductProfileApi;

public class ProductProfileApiExample {

    public static void main(String[] args) {
        ProductProfileApi apiInstance = new ProductProfileApi();
        String productProfileUid = productProfileUid_example; // String | 
        try {
            apiInstance.productProfileProductProfileUidGet_0(productProfileUid);
        } catch (ApiException e) {
            System.err.println("Exception when calling ProductProfileApi#productProfileProductProfileUidGet_0");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
// Configure OAuth2 access token for authorization: (authentication scheme: application)
[apiConfig setAccessToken:@"YOUR_ACCESS_TOKEN"];
String *productProfileUid = productProfileUid_example; // 

ProductProfileApi *apiInstance = [[ProductProfileApi alloc] init];

[apiInstance productProfileProductProfileUidGet_6With:productProfileUid
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var 1TrueId30MakerCustomer = require('1_true_id_30_maker_customer');
var defaultClient = 1TrueId30MakerCustomer.ApiClient.instance;

// Configure OAuth2 access token for authorization: application
var application = defaultClient.authentications['application'];
application.accessToken = "YOUR ACCESS TOKEN"

var api = new 1TrueId30MakerCustomer.ProductProfileApi()
var productProfileUid = productProfileUid_example; // {{String}} 

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.productProfileProductProfileUidGet_0(productProfileUid, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            // Configure OAuth2 access token for authorization: application
            Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";

            var apiInstance = new ProductProfileApi();
            var productProfileUid = productProfileUid_example;  // String | 

            try
            {
                apiInstance.productProfileProductProfileUidGet_0(productProfileUid);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ProductProfileApi.productProfileProductProfileUidGet_0: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Configure OAuth2 access token for authorization: application
Swagger\Client\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');

$api_instance = new Swagger\Client\ApiProductProfileApi();
$productProfileUid = productProfileUid_example; // String | 

try {
    $api_instance->productProfileProductProfileUidGet_0($productProfileUid);
} catch (Exception $e) {
    echo 'Exception when calling ProductProfileApi->productProfileProductProfileUidGet_0: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ProductProfileApi;

# Configure OAuth2 access token for authorization: application
$WWW::SwaggerClient::Configuration::access_token = 'YOUR_ACCESS_TOKEN';

my $api_instance = WWW::SwaggerClient::ProductProfileApi->new();
my $productProfileUid = productProfileUid_example; # String | 

eval { 
    $api_instance->productProfileProductProfileUidGet_0(productProfileUid => $productProfileUid);
};
if ($@) {
    warn "Exception when calling ProductProfileApi->productProfileProductProfileUidGet_0: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint

# Configure OAuth2 access token for authorization: application
swagger_client.configuration.access_token = 'YOUR_ACCESS_TOKEN'

# create an instance of the API class
api_instance = swagger_client.ProductProfileApi()
productProfileUid = productProfileUid_example # String | 

try: 
    api_instance.product_profile_product_profile_uid_get_0(productProfileUid)
except ApiException as e:
    print("Exception when calling ProductProfileApi->productProfileProductProfileUidGet_0: %s\n" % e)

Parameters

Path parameters
Name Description
product_profile_uid*
String
Required

Responses

Status: 200 - OK


productProfileProductProfileUidPut


/productProfile/{product_profile_uid}

Usage and SDK Samples

curl -X PUT\
\
"http://localhost:3004//productProfile/{product_profile_uid}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ProductProfileApi;

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

public class ProductProfileApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();

        // Configure OAuth2 access token for authorization: application
        OAuth application = (OAuth) defaultClient.getAuthentication("application");
        application.setAccessToken("YOUR ACCESS TOKEN");

        ProductProfileApi apiInstance = new ProductProfileApi();
        String productProfileUid = productProfileUid_example; // String | 
        try {
            apiInstance.productProfileProductProfileUidPut(productProfileUid);
        } catch (ApiException e) {
            System.err.println("Exception when calling ProductProfileApi#productProfileProductProfileUidPut");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ProductProfileApi;

public class ProductProfileApiExample {

    public static void main(String[] args) {
        ProductProfileApi apiInstance = new ProductProfileApi();
        String productProfileUid = productProfileUid_example; // String | 
        try {
            apiInstance.productProfileProductProfileUidPut(productProfileUid);
        } catch (ApiException e) {
            System.err.println("Exception when calling ProductProfileApi#productProfileProductProfileUidPut");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
// Configure OAuth2 access token for authorization: (authentication scheme: application)
[apiConfig setAccessToken:@"YOUR_ACCESS_TOKEN"];
String *productProfileUid = productProfileUid_example; // 

ProductProfileApi *apiInstance = [[ProductProfileApi alloc] init];

[apiInstance productProfileProductProfileUidPutWith:productProfileUid
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var 1TrueId30MakerCustomer = require('1_true_id_30_maker_customer');
var defaultClient = 1TrueId30MakerCustomer.ApiClient.instance;

// Configure OAuth2 access token for authorization: application
var application = defaultClient.authentications['application'];
application.accessToken = "YOUR ACCESS TOKEN"

var api = new 1TrueId30MakerCustomer.ProductProfileApi()
var productProfileUid = productProfileUid_example; // {{String}} 

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.productProfileProductProfileUidPut(productProfileUid, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            // Configure OAuth2 access token for authorization: application
            Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";

            var apiInstance = new ProductProfileApi();
            var productProfileUid = productProfileUid_example;  // String | 

            try
            {
                apiInstance.productProfileProductProfileUidPut(productProfileUid);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ProductProfileApi.productProfileProductProfileUidPut: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Configure OAuth2 access token for authorization: application
Swagger\Client\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');

$api_instance = new Swagger\Client\ApiProductProfileApi();
$productProfileUid = productProfileUid_example; // String | 

try {
    $api_instance->productProfileProductProfileUidPut($productProfileUid);
} catch (Exception $e) {
    echo 'Exception when calling ProductProfileApi->productProfileProductProfileUidPut: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ProductProfileApi;

# Configure OAuth2 access token for authorization: application
$WWW::SwaggerClient::Configuration::access_token = 'YOUR_ACCESS_TOKEN';

my $api_instance = WWW::SwaggerClient::ProductProfileApi->new();
my $productProfileUid = productProfileUid_example; # String | 

eval { 
    $api_instance->productProfileProductProfileUidPut(productProfileUid => $productProfileUid);
};
if ($@) {
    warn "Exception when calling ProductProfileApi->productProfileProductProfileUidPut: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint

# Configure OAuth2 access token for authorization: application
swagger_client.configuration.access_token = 'YOUR_ACCESS_TOKEN'

# create an instance of the API class
api_instance = swagger_client.ProductProfileApi()
productProfileUid = productProfileUid_example # String | 

try: 
    api_instance.product_profile_product_profile_uid_put(productProfileUid)
except ApiException as e:
    print("Exception when calling ProductProfileApi->productProfileProductProfileUidPut: %s\n" % e)

Parameters

Path parameters
Name Description
product_profile_uid*
String
Required

Responses

Status: 200 - OK


productProfileProductProfileUidPut_7


/product-profile/{product_profile_uid}

Usage and SDK Samples

curl -X PUT\
\
"http://localhost:3004//product-profile/{product_profile_uid}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ProductProfileApi;

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

public class ProductProfileApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();

        // Configure OAuth2 access token for authorization: application
        OAuth application = (OAuth) defaultClient.getAuthentication("application");
        application.setAccessToken("YOUR ACCESS TOKEN");

        ProductProfileApi apiInstance = new ProductProfileApi();
        String productProfileUid = productProfileUid_example; // String | 
        try {
            apiInstance.productProfileProductProfileUidPut_0(productProfileUid);
        } catch (ApiException e) {
            System.err.println("Exception when calling ProductProfileApi#productProfileProductProfileUidPut_0");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ProductProfileApi;

public class ProductProfileApiExample {

    public static void main(String[] args) {
        ProductProfileApi apiInstance = new ProductProfileApi();
        String productProfileUid = productProfileUid_example; // String | 
        try {
            apiInstance.productProfileProductProfileUidPut_0(productProfileUid);
        } catch (ApiException e) {
            System.err.println("Exception when calling ProductProfileApi#productProfileProductProfileUidPut_0");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
// Configure OAuth2 access token for authorization: (authentication scheme: application)
[apiConfig setAccessToken:@"YOUR_ACCESS_TOKEN"];
String *productProfileUid = productProfileUid_example; // 

ProductProfileApi *apiInstance = [[ProductProfileApi alloc] init];

[apiInstance productProfileProductProfileUidPut_7With:productProfileUid
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var 1TrueId30MakerCustomer = require('1_true_id_30_maker_customer');
var defaultClient = 1TrueId30MakerCustomer.ApiClient.instance;

// Configure OAuth2 access token for authorization: application
var application = defaultClient.authentications['application'];
application.accessToken = "YOUR ACCESS TOKEN"

var api = new 1TrueId30MakerCustomer.ProductProfileApi()
var productProfileUid = productProfileUid_example; // {{String}} 

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.productProfileProductProfileUidPut_0(productProfileUid, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            // Configure OAuth2 access token for authorization: application
            Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";

            var apiInstance = new ProductProfileApi();
            var productProfileUid = productProfileUid_example;  // String | 

            try
            {
                apiInstance.productProfileProductProfileUidPut_0(productProfileUid);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ProductProfileApi.productProfileProductProfileUidPut_0: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Configure OAuth2 access token for authorization: application
Swagger\Client\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');

$api_instance = new Swagger\Client\ApiProductProfileApi();
$productProfileUid = productProfileUid_example; // String | 

try {
    $api_instance->productProfileProductProfileUidPut_0($productProfileUid);
} catch (Exception $e) {
    echo 'Exception when calling ProductProfileApi->productProfileProductProfileUidPut_0: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ProductProfileApi;

# Configure OAuth2 access token for authorization: application
$WWW::SwaggerClient::Configuration::access_token = 'YOUR_ACCESS_TOKEN';

my $api_instance = WWW::SwaggerClient::ProductProfileApi->new();
my $productProfileUid = productProfileUid_example; # String | 

eval { 
    $api_instance->productProfileProductProfileUidPut_0(productProfileUid => $productProfileUid);
};
if ($@) {
    warn "Exception when calling ProductProfileApi->productProfileProductProfileUidPut_0: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint

# Configure OAuth2 access token for authorization: application
swagger_client.configuration.access_token = 'YOUR_ACCESS_TOKEN'

# create an instance of the API class
api_instance = swagger_client.ProductProfileApi()
productProfileUid = productProfileUid_example # String | 

try: 
    api_instance.product_profile_product_profile_uid_put_0(productProfileUid)
except ApiException as e:
    print("Exception when calling ProductProfileApi->productProfileProductProfileUidPut_0: %s\n" % e)

Parameters

Path parameters
Name Description
product_profile_uid*
String
Required

Responses

Status: 200 - OK


productProfileProductProfileUidQrcodeCreatePost


/productProfile/{product_profile_uid}/qrcode/create

Usage and SDK Samples

curl -X POST\
\
"http://localhost:3004//productProfile/{product_profile_uid}/qrcode/create"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ProductProfileApi;

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

public class ProductProfileApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();

        // Configure OAuth2 access token for authorization: application
        OAuth application = (OAuth) defaultClient.getAuthentication("application");
        application.setAccessToken("YOUR ACCESS TOKEN");

        ProductProfileApi apiInstance = new ProductProfileApi();
        String productProfileUid = productProfileUid_example; // String | 
        try {
            apiInstance.productProfileProductProfileUidQrcodeCreatePost(productProfileUid);
        } catch (ApiException e) {
            System.err.println("Exception when calling ProductProfileApi#productProfileProductProfileUidQrcodeCreatePost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ProductProfileApi;

public class ProductProfileApiExample {

    public static void main(String[] args) {
        ProductProfileApi apiInstance = new ProductProfileApi();
        String productProfileUid = productProfileUid_example; // String | 
        try {
            apiInstance.productProfileProductProfileUidQrcodeCreatePost(productProfileUid);
        } catch (ApiException e) {
            System.err.println("Exception when calling ProductProfileApi#productProfileProductProfileUidQrcodeCreatePost");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
// Configure OAuth2 access token for authorization: (authentication scheme: application)
[apiConfig setAccessToken:@"YOUR_ACCESS_TOKEN"];
String *productProfileUid = productProfileUid_example; // 

ProductProfileApi *apiInstance = [[ProductProfileApi alloc] init];

[apiInstance productProfileProductProfileUidQrcodeCreatePostWith:productProfileUid
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var 1TrueId30MakerCustomer = require('1_true_id_30_maker_customer');
var defaultClient = 1TrueId30MakerCustomer.ApiClient.instance;

// Configure OAuth2 access token for authorization: application
var application = defaultClient.authentications['application'];
application.accessToken = "YOUR ACCESS TOKEN"

var api = new 1TrueId30MakerCustomer.ProductProfileApi()
var productProfileUid = productProfileUid_example; // {{String}} 

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.productProfileProductProfileUidQrcodeCreatePost(productProfileUid, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            // Configure OAuth2 access token for authorization: application
            Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";

            var apiInstance = new ProductProfileApi();
            var productProfileUid = productProfileUid_example;  // String | 

            try
            {
                apiInstance.productProfileProductProfileUidQrcodeCreatePost(productProfileUid);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ProductProfileApi.productProfileProductProfileUidQrcodeCreatePost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Configure OAuth2 access token for authorization: application
Swagger\Client\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');

$api_instance = new Swagger\Client\ApiProductProfileApi();
$productProfileUid = productProfileUid_example; // String | 

try {
    $api_instance->productProfileProductProfileUidQrcodeCreatePost($productProfileUid);
} catch (Exception $e) {
    echo 'Exception when calling ProductProfileApi->productProfileProductProfileUidQrcodeCreatePost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ProductProfileApi;

# Configure OAuth2 access token for authorization: application
$WWW::SwaggerClient::Configuration::access_token = 'YOUR_ACCESS_TOKEN';

my $api_instance = WWW::SwaggerClient::ProductProfileApi->new();
my $productProfileUid = productProfileUid_example; # String | 

eval { 
    $api_instance->productProfileProductProfileUidQrcodeCreatePost(productProfileUid => $productProfileUid);
};
if ($@) {
    warn "Exception when calling ProductProfileApi->productProfileProductProfileUidQrcodeCreatePost: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint

# Configure OAuth2 access token for authorization: application
swagger_client.configuration.access_token = 'YOUR_ACCESS_TOKEN'

# create an instance of the API class
api_instance = swagger_client.ProductProfileApi()
productProfileUid = productProfileUid_example # String | 

try: 
    api_instance.product_profile_product_profile_uid_qrcode_create_post(productProfileUid)
except ApiException as e:
    print("Exception when calling ProductProfileApi->productProfileProductProfileUidQrcodeCreatePost: %s\n" % e)

Parameters

Path parameters
Name Description
product_profile_uid*
String
Required

Responses

Status: 200 - OK


productProfileProductProfileUidQrcodeCreatePost_8


/product-profile/{product_profile_uid}/qrcode/create

Usage and SDK Samples

curl -X POST\
\
"http://localhost:3004//product-profile/{product_profile_uid}/qrcode/create"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ProductProfileApi;

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

public class ProductProfileApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();

        // Configure OAuth2 access token for authorization: application
        OAuth application = (OAuth) defaultClient.getAuthentication("application");
        application.setAccessToken("YOUR ACCESS TOKEN");

        ProductProfileApi apiInstance = new ProductProfileApi();
        String productProfileUid = productProfileUid_example; // String | 
        try {
            apiInstance.productProfileProductProfileUidQrcodeCreatePost_0(productProfileUid);
        } catch (ApiException e) {
            System.err.println("Exception when calling ProductProfileApi#productProfileProductProfileUidQrcodeCreatePost_0");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ProductProfileApi;

public class ProductProfileApiExample {

    public static void main(String[] args) {
        ProductProfileApi apiInstance = new ProductProfileApi();
        String productProfileUid = productProfileUid_example; // String | 
        try {
            apiInstance.productProfileProductProfileUidQrcodeCreatePost_0(productProfileUid);
        } catch (ApiException e) {
            System.err.println("Exception when calling ProductProfileApi#productProfileProductProfileUidQrcodeCreatePost_0");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
// Configure OAuth2 access token for authorization: (authentication scheme: application)
[apiConfig setAccessToken:@"YOUR_ACCESS_TOKEN"];
String *productProfileUid = productProfileUid_example; // 

ProductProfileApi *apiInstance = [[ProductProfileApi alloc] init];

[apiInstance productProfileProductProfileUidQrcodeCreatePost_8With:productProfileUid
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var 1TrueId30MakerCustomer = require('1_true_id_30_maker_customer');
var defaultClient = 1TrueId30MakerCustomer.ApiClient.instance;

// Configure OAuth2 access token for authorization: application
var application = defaultClient.authentications['application'];
application.accessToken = "YOUR ACCESS TOKEN"

var api = new 1TrueId30MakerCustomer.ProductProfileApi()
var productProfileUid = productProfileUid_example; // {{String}} 

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.productProfileProductProfileUidQrcodeCreatePost_0(productProfileUid, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            // Configure OAuth2 access token for authorization: application
            Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";

            var apiInstance = new ProductProfileApi();
            var productProfileUid = productProfileUid_example;  // String | 

            try
            {
                apiInstance.productProfileProductProfileUidQrcodeCreatePost_0(productProfileUid);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ProductProfileApi.productProfileProductProfileUidQrcodeCreatePost_0: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Configure OAuth2 access token for authorization: application
Swagger\Client\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');

$api_instance = new Swagger\Client\ApiProductProfileApi();
$productProfileUid = productProfileUid_example; // String | 

try {
    $api_instance->productProfileProductProfileUidQrcodeCreatePost_0($productProfileUid);
} catch (Exception $e) {
    echo 'Exception when calling ProductProfileApi->productProfileProductProfileUidQrcodeCreatePost_0: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ProductProfileApi;

# Configure OAuth2 access token for authorization: application
$WWW::SwaggerClient::Configuration::access_token = 'YOUR_ACCESS_TOKEN';

my $api_instance = WWW::SwaggerClient::ProductProfileApi->new();
my $productProfileUid = productProfileUid_example; # String | 

eval { 
    $api_instance->productProfileProductProfileUidQrcodeCreatePost_0(productProfileUid => $productProfileUid);
};
if ($@) {
    warn "Exception when calling ProductProfileApi->productProfileProductProfileUidQrcodeCreatePost_0: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint

# Configure OAuth2 access token for authorization: application
swagger_client.configuration.access_token = 'YOUR_ACCESS_TOKEN'

# create an instance of the API class
api_instance = swagger_client.ProductProfileApi()
productProfileUid = productProfileUid_example # String | 

try: 
    api_instance.product_profile_product_profile_uid_qrcode_create_post_0(productProfileUid)
except ApiException as e:
    print("Exception when calling ProductProfileApi->productProfileProductProfileUidQrcodeCreatePost_0: %s\n" % e)

Parameters

Path parameters
Name Description
product_profile_uid*
String
Required

Responses

Status: 200 - OK


productProfileProductProfileUidQrcodesGeneratePost


/productProfile/{product_profile_uid}/qrcodes/generate

Usage and SDK Samples

curl -X POST\
\
-H "Content-Type: application/json"\
"http://localhost:3004//productProfile/{product_profile_uid}/qrcodes/generate"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ProductProfileApi;

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

public class ProductProfileApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();

        // Configure OAuth2 access token for authorization: application
        OAuth application = (OAuth) defaultClient.getAuthentication("application");
        application.setAccessToken("YOUR ACCESS TOKEN");

        ProductProfileApi apiInstance = new ProductProfileApi();
        String productProfileUid = productProfileUid_example; // String | 
        Qrcodes_generate_body body = ; // Qrcodes_generate_body | 
        try {
            apiInstance.productProfileProductProfileUidQrcodesGeneratePost(productProfileUid, body);
        } catch (ApiException e) {
            System.err.println("Exception when calling ProductProfileApi#productProfileProductProfileUidQrcodesGeneratePost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ProductProfileApi;

public class ProductProfileApiExample {

    public static void main(String[] args) {
        ProductProfileApi apiInstance = new ProductProfileApi();
        String productProfileUid = productProfileUid_example; // String | 
        Qrcodes_generate_body body = ; // Qrcodes_generate_body | 
        try {
            apiInstance.productProfileProductProfileUidQrcodesGeneratePost(productProfileUid, body);
        } catch (ApiException e) {
            System.err.println("Exception when calling ProductProfileApi#productProfileProductProfileUidQrcodesGeneratePost");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
// Configure OAuth2 access token for authorization: (authentication scheme: application)
[apiConfig setAccessToken:@"YOUR_ACCESS_TOKEN"];
String *productProfileUid = productProfileUid_example; // 
Qrcodes_generate_body *body = ; //  (optional)

ProductProfileApi *apiInstance = [[ProductProfileApi alloc] init];

[apiInstance productProfileProductProfileUidQrcodesGeneratePostWith:productProfileUid
    body:body
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var 1TrueId30MakerCustomer = require('1_true_id_30_maker_customer');
var defaultClient = 1TrueId30MakerCustomer.ApiClient.instance;

// Configure OAuth2 access token for authorization: application
var application = defaultClient.authentications['application'];
application.accessToken = "YOUR ACCESS TOKEN"

var api = new 1TrueId30MakerCustomer.ProductProfileApi()
var productProfileUid = productProfileUid_example; // {{String}} 
var opts = { 
  'body':  // {{Qrcodes_generate_body}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.productProfileProductProfileUidQrcodesGeneratePost(productProfileUid, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            // Configure OAuth2 access token for authorization: application
            Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";

            var apiInstance = new ProductProfileApi();
            var productProfileUid = productProfileUid_example;  // String | 
            var body = new Qrcodes_generate_body(); // Qrcodes_generate_body |  (optional) 

            try
            {
                apiInstance.productProfileProductProfileUidQrcodesGeneratePost(productProfileUid, body);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ProductProfileApi.productProfileProductProfileUidQrcodesGeneratePost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Configure OAuth2 access token for authorization: application
Swagger\Client\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');

$api_instance = new Swagger\Client\ApiProductProfileApi();
$productProfileUid = productProfileUid_example; // String | 
$body = ; // Qrcodes_generate_body | 

try {
    $api_instance->productProfileProductProfileUidQrcodesGeneratePost($productProfileUid, $body);
} catch (Exception $e) {
    echo 'Exception when calling ProductProfileApi->productProfileProductProfileUidQrcodesGeneratePost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ProductProfileApi;

# Configure OAuth2 access token for authorization: application
$WWW::SwaggerClient::Configuration::access_token = 'YOUR_ACCESS_TOKEN';

my $api_instance = WWW::SwaggerClient::ProductProfileApi->new();
my $productProfileUid = productProfileUid_example; # String | 
my $body = WWW::SwaggerClient::Object::Qrcodes_generate_body->new(); # Qrcodes_generate_body | 

eval { 
    $api_instance->productProfileProductProfileUidQrcodesGeneratePost(productProfileUid => $productProfileUid, body => $body);
};
if ($@) {
    warn "Exception when calling ProductProfileApi->productProfileProductProfileUidQrcodesGeneratePost: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint

# Configure OAuth2 access token for authorization: application
swagger_client.configuration.access_token = 'YOUR_ACCESS_TOKEN'

# create an instance of the API class
api_instance = swagger_client.ProductProfileApi()
productProfileUid = productProfileUid_example # String | 
body =  # Qrcodes_generate_body |  (optional)

try: 
    api_instance.product_profile_product_profile_uid_qrcodes_generate_post(productProfileUid, body=body)
except ApiException as e:
    print("Exception when calling ProductProfileApi->productProfileProductProfileUidQrcodesGeneratePost: %s\n" % e)

Parameters

Path parameters
Name Description
product_profile_uid*
String
Required
Body parameters
Name Description
body

Responses

Status: 200 - OK


productProfileProductProfileUidQrcodesGeneratePost_9


/product-profile/{product_profile_uid}/qrcodes/generate

Usage and SDK Samples

curl -X POST\
\
-H "Content-Type: application/json"\
"http://localhost:3004//product-profile/{product_profile_uid}/qrcodes/generate"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ProductProfileApi;

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

public class ProductProfileApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();

        // Configure OAuth2 access token for authorization: application
        OAuth application = (OAuth) defaultClient.getAuthentication("application");
        application.setAccessToken("YOUR ACCESS TOKEN");

        ProductProfileApi apiInstance = new ProductProfileApi();
        String productProfileUid = productProfileUid_example; // String | 
        Qrcodes_generate_body_1 body = ; // Qrcodes_generate_body_1 | 
        try {
            apiInstance.productProfileProductProfileUidQrcodesGeneratePost_0(productProfileUid, body);
        } catch (ApiException e) {
            System.err.println("Exception when calling ProductProfileApi#productProfileProductProfileUidQrcodesGeneratePost_0");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ProductProfileApi;

public class ProductProfileApiExample {

    public static void main(String[] args) {
        ProductProfileApi apiInstance = new ProductProfileApi();
        String productProfileUid = productProfileUid_example; // String | 
        Qrcodes_generate_body_1 body = ; // Qrcodes_generate_body_1 | 
        try {
            apiInstance.productProfileProductProfileUidQrcodesGeneratePost_0(productProfileUid, body);
        } catch (ApiException e) {
            System.err.println("Exception when calling ProductProfileApi#productProfileProductProfileUidQrcodesGeneratePost_0");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
// Configure OAuth2 access token for authorization: (authentication scheme: application)
[apiConfig setAccessToken:@"YOUR_ACCESS_TOKEN"];
String *productProfileUid = productProfileUid_example; // 
Qrcodes_generate_body_1 *body = ; //  (optional)

ProductProfileApi *apiInstance = [[ProductProfileApi alloc] init];

[apiInstance productProfileProductProfileUidQrcodesGeneratePost_9With:productProfileUid
    body:body
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var 1TrueId30MakerCustomer = require('1_true_id_30_maker_customer');
var defaultClient = 1TrueId30MakerCustomer.ApiClient.instance;

// Configure OAuth2 access token for authorization: application
var application = defaultClient.authentications['application'];
application.accessToken = "YOUR ACCESS TOKEN"

var api = new 1TrueId30MakerCustomer.ProductProfileApi()
var productProfileUid = productProfileUid_example; // {{String}} 
var opts = { 
  'body':  // {{Qrcodes_generate_body_1}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.productProfileProductProfileUidQrcodesGeneratePost_0(productProfileUid, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            // Configure OAuth2 access token for authorization: application
            Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";

            var apiInstance = new ProductProfileApi();
            var productProfileUid = productProfileUid_example;  // String | 
            var body = new Qrcodes_generate_body_1(); // Qrcodes_generate_body_1 |  (optional) 

            try
            {
                apiInstance.productProfileProductProfileUidQrcodesGeneratePost_0(productProfileUid, body);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ProductProfileApi.productProfileProductProfileUidQrcodesGeneratePost_0: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Configure OAuth2 access token for authorization: application
Swagger\Client\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');

$api_instance = new Swagger\Client\ApiProductProfileApi();
$productProfileUid = productProfileUid_example; // String | 
$body = ; // Qrcodes_generate_body_1 | 

try {
    $api_instance->productProfileProductProfileUidQrcodesGeneratePost_0($productProfileUid, $body);
} catch (Exception $e) {
    echo 'Exception when calling ProductProfileApi->productProfileProductProfileUidQrcodesGeneratePost_0: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ProductProfileApi;

# Configure OAuth2 access token for authorization: application
$WWW::SwaggerClient::Configuration::access_token = 'YOUR_ACCESS_TOKEN';

my $api_instance = WWW::SwaggerClient::ProductProfileApi->new();
my $productProfileUid = productProfileUid_example; # String | 
my $body = WWW::SwaggerClient::Object::Qrcodes_generate_body_1->new(); # Qrcodes_generate_body_1 | 

eval { 
    $api_instance->productProfileProductProfileUidQrcodesGeneratePost_0(productProfileUid => $productProfileUid, body => $body);
};
if ($@) {
    warn "Exception when calling ProductProfileApi->productProfileProductProfileUidQrcodesGeneratePost_0: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint

# Configure OAuth2 access token for authorization: application
swagger_client.configuration.access_token = 'YOUR_ACCESS_TOKEN'

# create an instance of the API class
api_instance = swagger_client.ProductProfileApi()
productProfileUid = productProfileUid_example # String | 
body =  # Qrcodes_generate_body_1 |  (optional)

try: 
    api_instance.product_profile_product_profile_uid_qrcodes_generate_post_0(productProfileUid, body=body)
except ApiException as e:
    print("Exception when calling ProductProfileApi->productProfileProductProfileUidQrcodesGeneratePost_0: %s\n" % e)

Parameters

Path parameters
Name Description
product_profile_uid*
String
Required
Body parameters
Name Description
body

Responses

Status: 200 - OK


productProfileProductProfileUidQrcodesSendPost


/productProfile/{product_profile_uid}/qrcodes/send

Usage and SDK Samples

curl -X POST\
\
-H "Content-Type: application/json"\
"http://localhost:3004//productProfile/{product_profile_uid}/qrcodes/send"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ProductProfileApi;

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

public class ProductProfileApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();

        // Configure OAuth2 access token for authorization: application
        OAuth application = (OAuth) defaultClient.getAuthentication("application");
        application.setAccessToken("YOUR ACCESS TOKEN");

        ProductProfileApi apiInstance = new ProductProfileApi();
        String productProfileUid = productProfileUid_example; // String | 
        Qrcodes_send_body body = ; // Qrcodes_send_body | 
        try {
            apiInstance.productProfileProductProfileUidQrcodesSendPost(productProfileUid, body);
        } catch (ApiException e) {
            System.err.println("Exception when calling ProductProfileApi#productProfileProductProfileUidQrcodesSendPost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ProductProfileApi;

public class ProductProfileApiExample {

    public static void main(String[] args) {
        ProductProfileApi apiInstance = new ProductProfileApi();
        String productProfileUid = productProfileUid_example; // String | 
        Qrcodes_send_body body = ; // Qrcodes_send_body | 
        try {
            apiInstance.productProfileProductProfileUidQrcodesSendPost(productProfileUid, body);
        } catch (ApiException e) {
            System.err.println("Exception when calling ProductProfileApi#productProfileProductProfileUidQrcodesSendPost");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
// Configure OAuth2 access token for authorization: (authentication scheme: application)
[apiConfig setAccessToken:@"YOUR_ACCESS_TOKEN"];
String *productProfileUid = productProfileUid_example; // 
Qrcodes_send_body *body = ; //  (optional)

ProductProfileApi *apiInstance = [[ProductProfileApi alloc] init];

[apiInstance productProfileProductProfileUidQrcodesSendPostWith:productProfileUid
    body:body
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var 1TrueId30MakerCustomer = require('1_true_id_30_maker_customer');
var defaultClient = 1TrueId30MakerCustomer.ApiClient.instance;

// Configure OAuth2 access token for authorization: application
var application = defaultClient.authentications['application'];
application.accessToken = "YOUR ACCESS TOKEN"

var api = new 1TrueId30MakerCustomer.ProductProfileApi()
var productProfileUid = productProfileUid_example; // {{String}} 
var opts = { 
  'body':  // {{Qrcodes_send_body}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.productProfileProductProfileUidQrcodesSendPost(productProfileUid, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            // Configure OAuth2 access token for authorization: application
            Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";

            var apiInstance = new ProductProfileApi();
            var productProfileUid = productProfileUid_example;  // String | 
            var body = new Qrcodes_send_body(); // Qrcodes_send_body |  (optional) 

            try
            {
                apiInstance.productProfileProductProfileUidQrcodesSendPost(productProfileUid, body);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ProductProfileApi.productProfileProductProfileUidQrcodesSendPost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Configure OAuth2 access token for authorization: application
Swagger\Client\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');

$api_instance = new Swagger\Client\ApiProductProfileApi();
$productProfileUid = productProfileUid_example; // String | 
$body = ; // Qrcodes_send_body | 

try {
    $api_instance->productProfileProductProfileUidQrcodesSendPost($productProfileUid, $body);
} catch (Exception $e) {
    echo 'Exception when calling ProductProfileApi->productProfileProductProfileUidQrcodesSendPost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ProductProfileApi;

# Configure OAuth2 access token for authorization: application
$WWW::SwaggerClient::Configuration::access_token = 'YOUR_ACCESS_TOKEN';

my $api_instance = WWW::SwaggerClient::ProductProfileApi->new();
my $productProfileUid = productProfileUid_example; # String | 
my $body = WWW::SwaggerClient::Object::Qrcodes_send_body->new(); # Qrcodes_send_body | 

eval { 
    $api_instance->productProfileProductProfileUidQrcodesSendPost(productProfileUid => $productProfileUid, body => $body);
};
if ($@) {
    warn "Exception when calling ProductProfileApi->productProfileProductProfileUidQrcodesSendPost: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint

# Configure OAuth2 access token for authorization: application
swagger_client.configuration.access_token = 'YOUR_ACCESS_TOKEN'

# create an instance of the API class
api_instance = swagger_client.ProductProfileApi()
productProfileUid = productProfileUid_example # String | 
body =  # Qrcodes_send_body |  (optional)

try: 
    api_instance.product_profile_product_profile_uid_qrcodes_send_post(productProfileUid, body=body)
except ApiException as e:
    print("Exception when calling ProductProfileApi->productProfileProductProfileUidQrcodesSendPost: %s\n" % e)

Parameters

Path parameters
Name Description
product_profile_uid*
String
Required
Body parameters
Name Description
body

Responses

Status: 200 - OK


productProfileProductProfileUidQrcodesSendPost_10


/product-profile/{product_profile_uid}/qrcodes/send

Usage and SDK Samples

curl -X POST\
\
-H "Content-Type: application/json"\
"http://localhost:3004//product-profile/{product_profile_uid}/qrcodes/send"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ProductProfileApi;

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

public class ProductProfileApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();

        // Configure OAuth2 access token for authorization: application
        OAuth application = (OAuth) defaultClient.getAuthentication("application");
        application.setAccessToken("YOUR ACCESS TOKEN");

        ProductProfileApi apiInstance = new ProductProfileApi();
        String productProfileUid = productProfileUid_example; // String | 
        Qrcodes_send_body_1 body = ; // Qrcodes_send_body_1 | 
        try {
            apiInstance.productProfileProductProfileUidQrcodesSendPost_0(productProfileUid, body);
        } catch (ApiException e) {
            System.err.println("Exception when calling ProductProfileApi#productProfileProductProfileUidQrcodesSendPost_0");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ProductProfileApi;

public class ProductProfileApiExample {

    public static void main(String[] args) {
        ProductProfileApi apiInstance = new ProductProfileApi();
        String productProfileUid = productProfileUid_example; // String | 
        Qrcodes_send_body_1 body = ; // Qrcodes_send_body_1 | 
        try {
            apiInstance.productProfileProductProfileUidQrcodesSendPost_0(productProfileUid, body);
        } catch (ApiException e) {
            System.err.println("Exception when calling ProductProfileApi#productProfileProductProfileUidQrcodesSendPost_0");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
// Configure OAuth2 access token for authorization: (authentication scheme: application)
[apiConfig setAccessToken:@"YOUR_ACCESS_TOKEN"];
String *productProfileUid = productProfileUid_example; // 
Qrcodes_send_body_1 *body = ; //  (optional)

ProductProfileApi *apiInstance = [[ProductProfileApi alloc] init];

[apiInstance productProfileProductProfileUidQrcodesSendPost_10With:productProfileUid
    body:body
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var 1TrueId30MakerCustomer = require('1_true_id_30_maker_customer');
var defaultClient = 1TrueId30MakerCustomer.ApiClient.instance;

// Configure OAuth2 access token for authorization: application
var application = defaultClient.authentications['application'];
application.accessToken = "YOUR ACCESS TOKEN"

var api = new 1TrueId30MakerCustomer.ProductProfileApi()
var productProfileUid = productProfileUid_example; // {{String}} 
var opts = { 
  'body':  // {{Qrcodes_send_body_1}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.productProfileProductProfileUidQrcodesSendPost_0(productProfileUid, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            // Configure OAuth2 access token for authorization: application
            Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";

            var apiInstance = new ProductProfileApi();
            var productProfileUid = productProfileUid_example;  // String | 
            var body = new Qrcodes_send_body_1(); // Qrcodes_send_body_1 |  (optional) 

            try
            {
                apiInstance.productProfileProductProfileUidQrcodesSendPost_0(productProfileUid, body);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ProductProfileApi.productProfileProductProfileUidQrcodesSendPost_0: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Configure OAuth2 access token for authorization: application
Swagger\Client\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');

$api_instance = new Swagger\Client\ApiProductProfileApi();
$productProfileUid = productProfileUid_example; // String | 
$body = ; // Qrcodes_send_body_1 | 

try {
    $api_instance->productProfileProductProfileUidQrcodesSendPost_0($productProfileUid, $body);
} catch (Exception $e) {
    echo 'Exception when calling ProductProfileApi->productProfileProductProfileUidQrcodesSendPost_0: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ProductProfileApi;

# Configure OAuth2 access token for authorization: application
$WWW::SwaggerClient::Configuration::access_token = 'YOUR_ACCESS_TOKEN';

my $api_instance = WWW::SwaggerClient::ProductProfileApi->new();
my $productProfileUid = productProfileUid_example; # String | 
my $body = WWW::SwaggerClient::Object::Qrcodes_send_body_1->new(); # Qrcodes_send_body_1 | 

eval { 
    $api_instance->productProfileProductProfileUidQrcodesSendPost_0(productProfileUid => $productProfileUid, body => $body);
};
if ($@) {
    warn "Exception when calling ProductProfileApi->productProfileProductProfileUidQrcodesSendPost_0: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint

# Configure OAuth2 access token for authorization: application
swagger_client.configuration.access_token = 'YOUR_ACCESS_TOKEN'

# create an instance of the API class
api_instance = swagger_client.ProductProfileApi()
productProfileUid = productProfileUid_example # String | 
body =  # Qrcodes_send_body_1 |  (optional)

try: 
    api_instance.product_profile_product_profile_uid_qrcodes_send_post_0(productProfileUid, body=body)
except ApiException as e:
    print("Exception when calling ProductProfileApi->productProfileProductProfileUidQrcodesSendPost_0: %s\n" % e)

Parameters

Path parameters
Name Description
product_profile_uid*
String
Required
Body parameters
Name Description
body

Responses

Status: 200 - OK