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