createSupplier
Creates new Supplier
/suppliers
Usage and SDK Samples
curl -X POST "https://localhost/inventory-service/api/v1/suppliers"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.SupplierApi;
import java.io.File;
import java.util.*;
public class SupplierApiExample {
public static void main(String[] args) {
SupplierApi apiInstance = new SupplierApi();
Supplier body = ; // Supplier | Supplier object that needs to be created
try {
Supplier result = apiInstance.createSupplier(body);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling SupplierApi#createSupplier");
e.printStackTrace();
}
}
}
import io.swagger.client.api.SupplierApi;
public class SupplierApiExample {
public static void main(String[] args) {
SupplierApi apiInstance = new SupplierApi();
Supplier body = ; // Supplier | Supplier object that needs to be created
try {
Supplier result = apiInstance.createSupplier(body);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling SupplierApi#createSupplier");
e.printStackTrace();
}
}
}
Supplier *body = ; // Supplier object that needs to be created
SupplierApi *apiInstance = [[SupplierApi alloc] init];
// Creates new Supplier
[apiInstance createSupplierWith:body
completionHandler: ^(Supplier output, NSError* error) {
if (output) {
NSLog(@"%@", output);
}
if (error) {
NSLog(@"Error: %@", error);
}
}];
var InventoryServiceSupplierRestApi = require('inventory_service___supplier___rest_api');
var api = new InventoryServiceSupplierRestApi.SupplierApi()
var body = ; // {Supplier} Supplier object that needs to be created
var callback = function(error, data, response) {
if (error) {
console.error(error);
} else {
console.log('API called successfully. Returned data: ' + data);
}
};
api.createSupplier(body, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;
namespace Example
{
public class createSupplierExample
{
public void main()
{
var apiInstance = new SupplierApi();
var body = new Supplier(); // Supplier | Supplier object that needs to be created
try
{
// Creates new Supplier
Supplier result = apiInstance.createSupplier(body);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling SupplierApi.createSupplier: " + e.Message );
}
}
}
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$api_instance = new Swagger\Client\Api\SupplierApi();
$body = ; // Supplier | Supplier object that needs to be created
try {
$result = $api_instance->createSupplier($body);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling SupplierApi->createSupplier: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::SupplierApi;
my $api_instance = WWW::SwaggerClient::SupplierApi->new();
my $body = WWW::SwaggerClient::Object::Supplier->new(); # Supplier | Supplier object that needs to be created
eval {
my $result = $api_instance->createSupplier(body => $body);
print Dumper($result);
};
if ($@) {
warn "Exception when calling SupplierApi->createSupplier: $@\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.SupplierApi()
body = # Supplier | Supplier object that needs to be created
try:
# Creates new Supplier
api_response = api_instance.create_supplier(body)
pprint(api_response)
except ApiException as e:
print("Exception when calling SupplierApi->createSupplier: %s\n" % e)
Parameters
Body parameters
| Name | Description |
|---|---|
| body * |