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