getBook
Gibt ein einzelnes Buch anhand der Bestellnummer/BuchId zurück
Gibt ein Buch zurück
/books/{id}
Usage and SDK Samples
curl -X GET\
-H "Accept: application/json"\
"http://api.versandantiquariat.org/books/{id}"
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();
Long id = 789; // Long | Bestellnummer des Buchs
try {
book result = apiInstance.getBook(id);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling BooksApi#getBook");
e.printStackTrace();
ÿ 쿠ؾ }
}
}
import io.swagger.client.api.BooksApi;
public class BooksApiExample {
public static void main(String[] args) {
BooksApi apiInstance = new BooksApi();
Long id = 789; // Long | Bestellnummer des Buchs
try {
book result = apiInstance.getBook(id);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling BooksApi#getBook");
e.printStackTrace();
}
}
}
Long *id = 789; // Bestellnummer des Buchs
BooksApi *apiInstance = [[BooksApi alloc] init];
// Gibt ein einzelnes Buch anhand der Bestellnummer/BuchId zurück
[apiInstance getBookWith:id
completionHandler: ^(book output, NSError* error) {
if (output) {
NSLog(@"%@", output);
}
if (error) {
NSLog(@"Error: %@", error);
}
}];
var OpenApiVersandantiquariatorg = require('open_api_versandantiquariatorg');
var api = new OpenApiVersandantiquariatorg.BooksApi()
var id = 789; // {{Long}} Bestellnummer des Buchs
var callback = function(error, data, response) {
if (error) {
console.error(error);
} else {
console.log('API called successfully. Returned data: ' + data);
}
};
api.getBook(id, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;
namespace Example
{
public class getBookExample
{
public void main()
{
var apiInstance = new BooksApi();
var id = 789; // Long | Bestellnummer des Buchs
try
{
// Gibt ein einzelnes Buch anhand der Bestellnummer/BuchId zurück
book result = apiInstance.getBook(id);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling BooksApi.getBook: " + e.Message );
}
}
}
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$api_instance = new Swagger\Client\ApiBooksApi();
$id = 789; // Long | Bestellnummer des Buchs
try {
$result = $api_instance->getBook($id);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling BooksApi->getBook: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::BooksApi;
my $api_instance = WWW::SwaggerClient::BooksApi->new();
my $id = 789; # Long | Bestellnummer des Buchs
eval {
my $result = $api_instance->getBook(id => $id);
print Dumper($result);
};
if ($@) {
warn "Exception when calling BooksApi->getBook: $@\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()
id = 789 # Long | Bestellnummer des Buchs
try:
# Gibt ein einzelnes Buch anhand der Bestellnummer/BuchId zurück
api_response = api_instance.get_book(id)
pprint(api_response)
except ApiException as e:
print("Exception when calling BooksApi->getBook: %s\n" % e)
Parameters
Path parameters
| Name | Description |
|---|---|
| id* |
Long
(int64)
Bestellnummer des Buchs
Required
|